-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.37 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
{
"name": "promise-with-retry",
"version": "2.0.1",
"description": "Easily retry operations with any retry strategy you want.",
"main": "dist/index.js",
"scripts": {
"dev": "tsc -w",
"lint": "tslint '*.ts'",
"build": "tsc",
"prepublish": "npm run build",
"ava": "nyc node --harmony node_modules/.bin/ava dist/index.test.js --serial --verbose",
"test": "npm run lint && npm run build && npm run ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dongss/promise-with-retry.git"
},
"author": {
"name": "Shaoshuai Dong",
"email": "dongsoso@hotmail.com",
"url": "https://github.com/Dongss"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Dongss/promise-with-retry/issues"
},
"homepage": "https://github.com/Dongss/promise-with-retry#readme",
"typings": "dist/index.d.ts",
"engines": {
"node": ">= 4.0.0"
},
"devDependencies": {
"@types/node": "^9.3.0",
"@types/sinon": "^4.1.3",
"ava": "^0.16.0",
"coveralls": "^2.13.1",
"nyc": "^10.3.2",
"sinon": "^4.1.4",
"tslint": "^5.2.0",
"typescript": "^2.3.2"
},
"nyc": {
"reporter": [
"html",
"lcov",
"text"
],
"exclude": [
"node_modules",
"**/*.test.*"
]
},
"keywords": [
"promise",
"retry",
"typescript",
"synchronous",
"exponent"
]
}