-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.35 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
{
"name": "polite-call",
"version": "1.0.0",
"description": "Simple rate limiting and backoff function implementation",
"author": {
"name": "Fedor Perejoguine",
"email": "[email protected]",
"url": "https://github.com/fyodordev"
},
"bugs": {
"url": "https://github.com/fyodordev/polite-call/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fyodordev/polite-call.git"
},
"license": "MIT",
"keywords": [
"rate",
"limit",
"limiter",
"limiting",
"exponential",
"backoff",
"polite",
"call",
"api",
"timing",
"error",
"handling"
],
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"builddeclaration": "tsc --declaration --emitDeclarationOnly",
"build": "tsc --sourceMap",
"cleanbuild": "tsc",
"fullbuild": "rm -rf ./dist && mkdir dist && npm run cleanbuild && cp ./LICENSE ./dist/ && cp ./package.json ./dist/ && cp ./README.md ./dist/ && cp ./src/index.d.ts ./dist/",
"test": "npm run build && jest --coverage"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.13.4",
"@types/rewire": "^2.5.28",
"jest": "^24.7.1",
"rewire": "^4.0.1",
"ts-jest": "^24.0.2",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.4.2"
},
"dependencies": {
"tslint": "^5.18.0"
}
}