-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 1.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "generator-sort",
"version": "1.0.0",
"description": "Sorting on multiple criteria with generator functions",
"main": "build/index.js",
"scripts": {
"lint": "prettier -l *.ts **/*.ts",
"prepare": "tsc --build tsconfig.json",
"test": "npm run prepare && nyc --exclude-after-remap false --exclude build/test/ multi-tape -o -p 4 build/test/test-*.js",
"test-travis": "npm run prepare && nyc --exclude-after-remap false --exclude build/test/ --reporter lcov multi-tape -o -p 4 build/test/test-*.js",
"prepublishOnly": "npm run lint && npm run test"
},
"author": "Mattias Holmlund <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/mattiash/generator-sort.git"
},
"bugs": {
"url": "https://github.com/mattiash/generator-sort/issues"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^9.4.5",
"coveralls": "^3.0.4",
"multi-tape": "^1.3.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"purple-tape": "^2.0.1",
"source-map-support": "^0.5.12",
"typescript": "^3.5.2"
}
}