-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
37 lines (37 loc) · 978 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
{
"name": "superagent-retry-delay",
"version": "3.1.0",
"description": "A retrying layer for a superagent request with delay support",
"license": "MIT",
"keywords": [
"superagent",
"retry",
"delay"
],
"author": "Luis Pabon <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/luispabon/superagent-retry-delay.git"
},
"files": [
"src/",
"package.json"
],
"main": "src/index",
"dependencies": {},
"peerDependencies": {
"superagent": "^3.5.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
},
"devDependencies": {
"express": "^4.19.2",
"mocha": "^10.7.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^17.0.0",
"prettier": "^3.3.3",
"should": "^13.2.3",
"superagent": "^3.5.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
},
"scripts": {
"test": "node_modules/.bin/nyc --reporter=lcov mocha --color --recursive --timeout=20000 tests/"
}
}