-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.13 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
34
35
36
37
{
"name": "wrappederror",
"version": "1.1.0",
"description": "Custom error type allowing to wrap errors one in another",
"main": "src/wrappederror.js",
"scripts": {
"pre-commit": "npm run -s lint",
"pre-push": "npm run -s test",
"lint": "eslint . -f ${ESLINT_FORMAT:-stylish}",
"test": "mocha -R ${REPORTER:-spec}",
"coverage": "istanbul cover _mocha -- -R ${REPORTER:-spec}",
"test-full": "istanbul cover _mocha -- -R mocha-multi --reporter-options ${REPORTER:-spec}=-,xunit=xunit.xml,doc=docs.html; istanbul report cobertura"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeMisterV/wrappederror.git"
},
"keywords": [
"error",
"wrap"
],
"author": "Nicolas Deveaud",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/LeMisterV/wrappederror/issues"
},
"homepage": "https://github.com/LeMisterV/wrappederror#readme",
"devDependencies": {
"captain-git-hook": "francetv/captain-git-hook",
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-multi": "^0.11.0",
"semistandard": "^11.0.0",
"sinon": "^2.2.0"
}
}