This repository was archived by the owner on Jun 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.34 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.34 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@speedup/error",
"version": "1.0.8",
"description": "SpeedUP standard error library",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/",
"build": "tsc",
"rebuild": "run-s clean build",
"test": "mocha --require ts-node/register test/index.ts",
"coverage": "nyc npm run test",
"prepublish": "run-s rebuild test coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpeedUp-io/nodejs-standard-error-lib.git"
},
"keywords": [
"speedup",
"error",
"http-error",
"exception"
],
"types": "dist/index.d.ts",
"author": "SpeedUP",
"license": "MIT",
"bugs": {
"url": "https://github.com/SpeedUp-io/nodejs-standard-error-lib/issues"
},
"homepage": "https://github.com/SpeedUp-io/nodejs-standard-error-lib#readme",
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.4",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"rimraf": "^3.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"coverage/**/*",
"dist/**/*",
"test/**/*",
"**/*.d.ts"
],
"reporter": [
"text",
"html",
"lcov"
],
"all": true
}
}