This repository has been archived by the owner on Dec 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
72 lines (72 loc) · 1.98 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
69
70
71
72
{
"name": "backoff-decorator",
"version": "0.1.18",
"engines": {
"node": ">=10.14.1",
"npm": ">=6.4.1"
},
"description": "Exponential retry backoff library offering full jitter and decorators.",
"main": "dist/src/backoff.js",
"types": "dist/src/backoff.d.ts",
"homepage": "https://github.com/unitoio/backoff-decorator",
"author": {
"name": "Unito",
"email": "[email protected]"
},
"scripts": {
"audit-with-ignore": "check-audit --production",
"clean": "rm -rf dist/ node_modules/ ci_output/ coverage/ *.tgz",
"compile": "tsc",
"prepublishOnly": "npm run clean && npm install && npm run compile",
"lint": "tslint -c tslint.json -p tsconfig.json",
"test": "npm run compile && nyc mocha 'dist/test/**/*.js'",
"test:ci": "npm run compile && mkdir -p ci_output/testresults ci_output/codecoverage && mocha -- --opts test/mocha.ci.opts 'dist/test/**/*.js'",
"packages:lock:regenerate": "rm -rf node_modules package-lock.json; npm install --package-lock; npm out; true",
"publish-to-npm": "npm login && npm version patch && git push --tags origin master && npm publish"
},
"nyc": {
"cache": false,
"check-coverage": true,
"all": true,
"lines": 25,
"extension": [
".ts"
],
"exclude": [
"**/scripts/**",
"**/*.d.ts",
"coverage/**",
"test/**",
"test{,-*}.ts",
"**/*{.,-}{test,spec}.ts",
"**/node_modules/**"
]
},
"keywords": [
"typescript",
"backoff",
"exponential",
"jitter",
"decorator"
],
"pre-commit": [
"lint",
"test",
"audit-with-ignore"
],
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^5.1.0",
"@types/node": "^10.9.4",
"chai": "^4.1.2",
"mocha": "^6.2.3",
"npm-audit-resolver": "2.x",
"nyc": "^14.1.1",
"pre-commit": "^1.2.2",
"source-map-support": "^0.5.12",
"tslint": "^5.8.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.5.2"
}
}