-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 1.87 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
73
74
{
"name": "rate-limiter-api",
"version": "1.0.11",
"description": "A simple library to easily manage rate limits of APIs without any hassles.",
"main": "index.js",
"scripts": {
"test": "xo"
},
"files": [
"dist",
"src"
],
"keywords": [
"rate",
"limiter",
"api",
"limit",
"request",
"http",
"resolve",
"promise",
"library",
"queue",
"concurrent",
"parallel"
],
"author": "Abhisek Pattnaik <[email protected]> (http://about.me/abhisekp)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/abhisekp/rate-limiter-api.git"
},
"bugs": {
"url": "https://github.com/abhisekp/rate-limiter-api/issues"
},
"homepage": "https://rate-limiter-api.js.org",
"dependencies": {
"async": "^2.0.1",
"babel-polyfill": "^6.13.0",
"lodash": "^4.15.0",
"npm-run-all": "^3.0.0",
"rimraf": "^2.5.4",
"source-map-support": "^0.4.2",
"stampit": "^3.0.0"
},
"devDependencies": {
"app-root-path": "^1.3.0",
"ava": "^3.11.0",
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-loader": "^6.2.5",
"babel-plugin-lodash": "^3.2.8",
"babel-plugin-transform-member-expression-literals": "^6.8.0",
"babel-plugin-transform-merge-sibling-variables": "^6.8.0",
"babel-plugin-transform-minify-booleans": "^6.8.0",
"babel-plugin-transform-property-literals": "^6.8.0",
"babel-plugin-transform-remove-debugger": "^6.8.0",
"babel-plugin-transform-simplify-comparison-operators": "^6.8.0",
"babel-plugin-transform-undefined-to-void": "^6.8.0",
"babel-plugin-typecheck": "^3.9.0",
"babel-preset-es2015": "^6.13.2",
"lodash-webpack-plugin": "^0.10.0",
"webpack": "^2.1.0-beta.21",
"xo": "^0.16.0"
},
"xo": {
"fix": true,
"esnext": true,
"semicolon": false,
"envs": [
"node"
]
}
}