Skip to content

Commit

Permalink
Merge pull request #797 from raineorshine/npm-run-all
Browse files Browse the repository at this point in the history
  • Loading branch information
raineorshine committed Jan 22, 2021
2 parents c67783f + 874a2d3 commit 1925471
Show file tree
Hide file tree
Showing 2 changed files with 210 additions and 2 deletions.
207 changes: 207 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@
"main": "./lib",
"scripts": {
"build": "node scripts/build.js",
"lint": "npm run lint:src && npm run lint:lockfile && npm run lint:markdown",
"lint": "npm-run-all --parallel --aggregate-output lint:*",
"lint:lockfile": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
"lint:markdown": "markdownlint \"**/*.md\" --ignore node_modules --config .markdownlint.js",
"lint:src": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives .",
"nyc": "nyc",
"mocha": "mocha test test/package-managers/npm test/package-managers/yarn && mocha --exit test/timeout",
"test": "npm run lint && npm run mocha",
"test": "npm-run-all lint mocha",
"watch": "chokidar \"lib/**/*.js\" -c \"npm run test\"",
"ncu": "node ./bin/cli.js"
},
Expand Down Expand Up @@ -100,6 +100,7 @@
"markdownlint-cli": "^0.26.0",
"mocha": "^8.2.1",
"mock-require": "^3.0.3",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"should": "^13.2.3",
"tmp": "0.2.1",
Expand Down

0 comments on commit 1925471

Please sign in to comment.