-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1012 Bytes
/
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
{
"name": "staggerjs",
"version": "1.2.0",
"description": "Light utility to stagger a stack of async methods",
"main": "lib",
"scripts": {
"test": "jest",
"prepublish": "npm run build",
"build": "rm -rf lib && babel src -d lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FrancescoCioria/staggerjs.git"
},
"keywords": [
"stagger",
"queue",
"async",
"promise",
"requests",
"stack"
],
"author": "FrancescoCioria <firefelix@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/FrancescoCioria/staggerjs/issues"
},
"homepage": "https://github.com/FrancescoCioria/staggerjs#readme",
"dependencies": {
"tcomb": "^3",
"throttle-function": "^0.1.0"
},
"devDependencies": {
"babel-cli": "^6",
"babel-eslint": "^7.0.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.6.0",
"eslint-config-buildo": "0.1.0",
"jest": "^16.0.2"
}
}