-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
49 lines (49 loc) · 1.08 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
{
"name": "quota",
"version": "0.0.5",
"description": "Sophisticated, general-purpose quota management",
"keywords": [
"quota",
"rate",
"limit",
"limits",
"throttling",
"queue"
],
"homepage": "https://github.com/analog-nico/quota",
"bugs": {
"url": "https://github.com/analog-nico/quota/issues"
},
"license": "ISC",
"author": "Nicolai Kamenzky (https://github.com/analog-nico)",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/analog-nico/quota.git"
},
"scripts": {
"test": "node_modules/.bin/gulp ci"
},
"dependencies": {
"bluebird": "^2.10",
"double-ended-queue": "2.1.0-0",
"lodash": "^3.10",
"moment": "^2.10.6"
},
"engines": {
"node": ">=0.10.0"
},
"devDependencies": {
"chai": "3.2.x",
"chalk": "1.1.x",
"gulp": "3.9.x",
"gulp-coveralls": "0.1.x",
"gulp-istanbul": "0.10.x",
"gulp-jshint": "1.11.x",
"gulp-mocha": "2.1.x",
"jshint-stylish": "2.0.x",
"rimraf": "2.4.x",
"run-sequence": "1.1.x",
"sinon": "1.16.x"
}
}