We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d045af commit 3556073Copy full SHA for 3556073
package.json
@@ -7,8 +7,9 @@
7
},
8
"description": "Algorithms and data structures implemented in JavaScript",
9
"scripts": {
10
- "test": "concurrently \"npm run lint-test\" \"npm run unit-test\"",
11
- "unit-test": "node --test --test-reporter dot",
+ "test": "concurrently \"npm run lint-test\" \"npm run unit-test-dot\"",
+ "unit-test-spec": "node --test --test-reporter spec",
12
+ "unit-test-dot": "node --test --test-reporter dot",
13
"lint-test": "standard .",
14
"build-jsdoc": "./node_modules/.bin/jsdoc --readme ./README.md --configure ./jsdoc.json --destination ./docs --recurse .",
15
"prepare": "husky install"
0 commit comments