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

Commit

Permalink
chore: Fix package.json prop ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
joshwiens committed Dec 17, 2017
1 parent f9174d2 commit b61859c
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions package.json
Expand Up @@ -4,13 +4,33 @@
"author": "Tobias Koppers @sokra",
"description": "URL Loader for webpack",
"license": "MIT",
"engines": {
"node": ">= 6.9.0 || >= 8.9.0"
},
"main": "dist/cjs.js",
"files": [
"dist"
],
"scripts": {
"start": "npm run build -- -w",
"build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files",
"clean": "del-cli dist",
"commitlint": "commitlint",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "eslint --cache src test",
"lint-staged": "lint-staged",
"prebuild": "npm run clean",
"prepublish": "npm run build",
"release:ci": "conventional-github-releaser -p angular",
"release:validate": "commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)",
"security": "nsp check",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
"ci:lint": "npm run lint && npm run security",
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
"ci:test": "npm run test -- --runInBand",
"ci:coverage": "npm run test:coverage -- --runInBand",
"webpack-defaults": "webpack-defaults",
"release": "standard-version"
},
"dependencies": {
"loader-utils": "^1.1.0",
"mime": "^2.0.3",
Expand Down Expand Up @@ -44,33 +64,13 @@
"webpack": "^3.0.0",
"webpack-defaults": "^2.0.0-beta.1"
},
"engines": {
"node": ">= 6.9.0 || >= 8.9.0"
},
"peerDependencies": {
"file-loader": "*",
"webpack": "^3.0.0 || ^4.0.0"
},
"scripts": {
"start": "npm run build -- -w",
"build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files",
"clean": "del-cli dist",
"commitlint": "commitlint",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "eslint --cache src test",
"lint-staged": "lint-staged",
"prebuild": "npm run clean",
"prepublish": "npm run build",
"release:ci": "conventional-github-releaser -p angular",
"release:validate": "commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)",
"security": "nsp check",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
"ci:lint": "npm run lint && npm run security",
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
"ci:test": "npm run test -- --runInBand",
"ci:coverage": "npm run test:coverage -- --runInBand",
"webpack-defaults": "webpack-defaults",
"release": "standard-version"
},
"repository": "https://github.com/webpack-contrib/url-loader.git",
"bugs": "https://github.com/webpack-contrib/url-loader/issues",
"homepage": "https://github.com/webpack-contrib/url-loader",
Expand Down

0 comments on commit b61859c

Please sign in to comment.