-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
42 lines (42 loc) · 1.02 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
38
39
40
41
42
{
"name": "polly-js",
"version": "1.8.3",
"description": "Transient exception handling",
"main": "src/polly.js",
"typings": "d.ts/polly-js.d.ts",
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha tests",
"test:watch": "mocha tests --watch",
"report-coverage": "cat ./coverage/lcov.info | ./node_modules/.bin/codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mauricedb/polly-js.git"
},
"keywords": [
"transient",
"exception",
"handling",
"error",
"try",
"catch",
"promise"
],
"author": "Maurice de Beijer",
"license": "MIT",
"bugs": {
"url": "https://github.com/mauricedb/polly-js/issues"
},
"homepage": "https://github.com/mauricedb/polly-js#readme",
"devDependencies": {
"chai": "5.1.2",
"chai-as-promised": "8.0.1",
"codecov.io": "0.1.6",
"gulp": "5.0.0",
"gulp-mocha": "10.0.1",
"istanbul": "0.4.5",
"mocha": "10.8.2",
"request": "^2.88.2",
"request-promise": "4.2.6"
}
}