-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.49 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
{
"name": "call-rate-limiter",
"version": "0.1.0",
"description": "Limit the execution rate of async function",
"main": "index.js",
"scripts": {
"clean": "rimraf coverage/",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "eslint-ci *.js test/*.js",
"size": "size-limit",
"spellcheck": "yaspeller-ci *.md",
"test": "npm run lint && npm run spellcheck && jest --coverage"
},
"size-limit": [
{
"path": "index.js",
"limit": "1 KB"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/ujenjt/call-rate-limiter.git"
},
"keywords": [
"rate",
"limit",
"function",
"api",
"rate-limit",
"request",
"call"
],
"author": "Eugene Pshenichnyy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ujenjt/call-rate-limiter/issues"
},
"homepage": "https://github.com/ujenjt/call-rate-limiter#readme",
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.7.0",
"eslint-ci": "^0.1.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.26.1",
"jest": "^23.6.0",
"rimraf": "^2.6.2",
"size-limit": "^0.20.1",
"yaspeller-ci": "^1.0.0"
},
"yaspeller": {
"lang": "en",
"ignoreCapitalization": true,
"dictionary": [
"JSDoc",
"js",
"lodash",
"async",
"limiter",
"limiters",
"endpoints"
]
}
}