-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.12 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
{
"name": "backoff.js",
"version": "1.0.4",
"description": "Fibonacci, exponential and fixed strategy backoffs for Node.js.",
"main": "index.js",
"keywords": [
"backoff",
"strategy",
"fixed",
"linear",
"fibonacci",
"exponential",
"retry"
],
"dependencies": {},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.17.2",
"mocha": "^6.1.4",
"nyc": "^14.1.1"
},
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js .",
"test": "NODE_ENV=test ./node_modules/mocha/bin/_mocha tests --colors --recursive --exit",
"test:cov": "NODE_ENV=test ./node_modules/nyc/bin/nyc.js --exclude=tests --reporter=html --reporter=text --reporter=lcov mocha tests --colors --recursive --exit",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "https://github.com/NassiHarel/backoff.js.git"
},
"author": "Nassi Harel",
"license": "MIT"
}