-
-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
68 lines (68 loc) · 2.01 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "requestretry",
"description": "request-retry wrap nodejs request to retry http(s) requests in case of error",
"version": "7.1.0",
"author": {
"name": "Francois-Guillaume Ribreau",
"email": "[email protected]",
"url": "http://fgribreau.com"
},
"contributors": [
{
"name": "juliendangers",
"email": "[email protected]"
},
{
"name": "Osbert Orr",
"email": "[email protected]"
}
],
"repository": {
"url": "https://github.com/FGRibreau/node-request-retry"
},
"main": "index.js",
"scripts": {
"test": "mocha -t 2000 -R spec $(find test -name '*.test.js')",
"test-watch": "mocha -t 100000 -R min -w $(find test -name '*.test.js')",
"test-coverage": "nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000 $(find test -name '*.test.js')",
"send-coverage": "cat ./coverage/lcov.info | coveralls",
"update": "updtr",
"release-after-pr": "git pull --rebase && npm run test-coverage && npm-release patch",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0",
"changelog-git": "npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master",
"postpublish": "npm run --silent changelog-git"
},
"license": "MIT",
"nyc": {
"exclude": [
"node_modules",
"dist",
"coverage",
"webpack.config.js",
"test"
]
},
"dependencies": {
"extend": "^3.0.2",
"lodash": "^4.17.15"
},
"peerDependencies": {
"request": "2.*.*"
},
"devDependencies": {
"bluebird": "^3.5.1",
"chai": "^4.2.0",
"conventional-changelog": "^2.0.1",
"conventional-changelog-cli": "^2.0.11",
"coveralls": "^2.13.1",
"kew": "~0.7.0",
"mocha": "^9.1.3",
"npm-release": "^1.0.0",
"nyc": "^15.1.0",
"q": "^1.5.1",
"request": "^2.88.0",
"rsvp": "^4.8.4",
"sinon": "^6.1.4",
"updtr": "^3.1.0"
}
}