-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "error",
"version": "10.4.1",
"description": "Custom errors",
"keywords": [],
"author": "Raynos <raynos2@gmail.com>",
"repository": "git://github.com/Raynos/error.git",
"main": "index",
"homepage": "https://github.com/Raynos/error",
"contributors": [
{
"name": "Raynos"
}
],
"bugs": {
"url": "https://github.com/Raynos/error/issues",
"email": "raynos2@gmail.com"
},
"binDependencies": {
"istanbul": "0.3.13",
"tsdocstandard": "15.2.2",
"type-coverage": "2.4.3",
"typescript": "3.8.3"
},
"tsdocstandard": {
"ignore": [
"benchmarks/index.js"
]
},
"dependencies": {},
"devDependencies": {
"@pre-bundled/tape": "5.0.0",
"@types/node": "13.13.4",
"npm-bin-deps": "1.8.2"
},
"license": "MIT",
"scripts": {
"check": "npr tsc -p .",
"lint": "npr tsdocstandard -v",
"test": "npm run check && npm run lint && node test/index.js && npm run type-coverage",
"type-coverage": "npr type-coverage --detail --strict --ignore-catch --at-least 100",
"travis-test": "npr istanbul cover ./test/index.js && ((cat coverage/lcov.info | coveralls) || exit 0)",
"cover": "npr istanbul cover --report none --print detail ./test/index.js",
"view-cover": "npr istanbul report html && google-chrome ./coverage/index.html"
}
}