-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.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
{
"name": "keep-trying",
"version": "2.0.2",
"description": "A function for creating retryable promises with configurable limit and backoff.",
"public": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "TS_NODE_PROJECT='test/tsconfig.json' mocha --require ts-node/register --project test/tsconfig.json 'test/**/*.spec.ts'",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/machuga/keep-trying.git"
},
"keywords": [
"promise",
"retry",
"retryable"
],
"author": "Matthew Machuga",
"license": "MIT",
"bugs": {
"url": "https://github.com/machuga/keep-trying/issues"
},
"homepage": "https://github.com/machuga/keep-trying#readme",
"devDependencies": {
"@types/chai": "^4.1.5",
"@types/mocha": "^5.2.5",
"@types/node": "^12.11.7",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
}
}