|
4 | 4 | "author": "Tobias Koppers @sokra", |
5 | 5 | "description": "URL Loader for webpack", |
6 | 6 | "license": "MIT", |
7 | | - "engines": { |
8 | | - "node": ">= 6.9.0 || >= 8.9.0" |
9 | | - }, |
10 | 7 | "main": "dist/cjs.js", |
11 | 8 | "files": [ |
12 | 9 | "dist" |
13 | 10 | ], |
| 11 | + "scripts": { |
| 12 | + "start": "npm run build -- -w", |
| 13 | + "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files", |
| 14 | + "clean": "del-cli dist", |
| 15 | + "commitlint": "commitlint", |
| 16 | + "commitmsg": "commitlint -e $GIT_PARAMS", |
| 17 | + "lint": "eslint --cache src test", |
| 18 | + "lint-staged": "lint-staged", |
| 19 | + "prebuild": "npm run clean", |
| 20 | + "prepublish": "npm run build", |
| 21 | + "release:ci": "conventional-github-releaser -p angular", |
| 22 | + "release:validate": "commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)", |
| 23 | + "security": "nsp check", |
| 24 | + "test": "jest", |
| 25 | + "test:watch": "jest --watch", |
| 26 | + "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage", |
| 27 | + "ci:lint": "npm run lint && npm run security", |
| 28 | + "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}", |
| 29 | + "ci:test": "npm run test -- --runInBand", |
| 30 | + "ci:coverage": "npm run test:coverage -- --runInBand", |
| 31 | + "webpack-defaults": "webpack-defaults", |
| 32 | + "release": "standard-version" |
| 33 | + }, |
14 | 34 | "dependencies": { |
15 | 35 | "loader-utils": "^1.1.0", |
16 | 36 | "mime": "^2.0.3", |
|
44 | 64 | "webpack": "^3.0.0", |
45 | 65 | "webpack-defaults": "^2.0.0-beta.1" |
46 | 66 | }, |
| 67 | + "engines": { |
| 68 | + "node": ">= 6.9.0 || >= 8.9.0" |
| 69 | + }, |
47 | 70 | "peerDependencies": { |
48 | 71 | "file-loader": "*", |
49 | 72 | "webpack": "^3.0.0 || ^4.0.0" |
50 | 73 | }, |
51 | | - "scripts": { |
52 | | - "start": "npm run build -- -w", |
53 | | - "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files", |
54 | | - "clean": "del-cli dist", |
55 | | - "commitlint": "commitlint", |
56 | | - "commitmsg": "commitlint -e $GIT_PARAMS", |
57 | | - "lint": "eslint --cache src test", |
58 | | - "lint-staged": "lint-staged", |
59 | | - "prebuild": "npm run clean", |
60 | | - "prepublish": "npm run build", |
61 | | - "release:ci": "conventional-github-releaser -p angular", |
62 | | - "release:validate": "commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)", |
63 | | - "security": "nsp check", |
64 | | - "test": "jest", |
65 | | - "test:watch": "jest --watch", |
66 | | - "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage", |
67 | | - "ci:lint": "npm run lint && npm run security", |
68 | | - "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}", |
69 | | - "ci:test": "npm run test -- --runInBand", |
70 | | - "ci:coverage": "npm run test:coverage -- --runInBand", |
71 | | - "webpack-defaults": "webpack-defaults", |
72 | | - "release": "standard-version" |
73 | | - }, |
74 | 74 | "repository": "https://github.com/webpack-contrib/url-loader.git", |
75 | 75 | "bugs": "https://github.com/webpack-contrib/url-loader/issues", |
76 | 76 | "homepage": "https://github.com/webpack-contrib/url-loader", |
|
0 commit comments