Skip to content
This repository was archived by the owner on Mar 17, 2021. It is now read-only.

Commit b61859c

Browse files
committed
chore: Fix package.json prop ordering
1 parent f9174d2 commit b61859c

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

package.json

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,33 @@
44
"author": "Tobias Koppers @sokra",
55
"description": "URL Loader for webpack",
66
"license": "MIT",
7-
"engines": {
8-
"node": ">= 6.9.0 || >= 8.9.0"
9-
},
107
"main": "dist/cjs.js",
118
"files": [
129
"dist"
1310
],
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+
},
1434
"dependencies": {
1535
"loader-utils": "^1.1.0",
1636
"mime": "^2.0.3",
@@ -44,33 +64,13 @@
4464
"webpack": "^3.0.0",
4565
"webpack-defaults": "^2.0.0-beta.1"
4666
},
67+
"engines": {
68+
"node": ">= 6.9.0 || >= 8.9.0"
69+
},
4770
"peerDependencies": {
4871
"file-loader": "*",
4972
"webpack": "^3.0.0 || ^4.0.0"
5073
},
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-
},
7474
"repository": "https://github.com/webpack-contrib/url-loader.git",
7575
"bugs": "https://github.com/webpack-contrib/url-loader/issues",
7676
"homepage": "https://github.com/webpack-contrib/url-loader",

0 commit comments

Comments
 (0)