-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 951 Bytes
/
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
34
35
36
37
38
{
"name": "node-errors-helpers",
"version": "1.0.0",
"description": "Some helpers for better error handling in Node.js",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"lint": "eslint src/**.js test/**.test.js",
"cover": "nyc npm run test",
"test": "mocha --recursive",
"test:examples": "node examples/",
"prepublish": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/Travelport-Ukraine/errors-helpers"
},
"keywords": [
"error",
"helpers"
],
"author": "Mark Orel <[email protected]>",
"contributors": [
"Dmitry Chertousov <[email protected]>",
"Mark Omarov <[email protected]"
],
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"nyc": "^15.1.0",
"mocha": "^8.2.1"
}
}