forked from vitaly-t/spex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 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
{
"name": "spex",
"version": "1.0.17",
"description": "Specialized Promise Extensions",
"main": "lib/index.js",
"scripts": {
"test": "jasmine-node test",
"doc": "./node_modules/.bin/jsdoc -c ./jsdoc/jsDoc.json ./jsdoc/README.md -u ./jsdoc/tutorials",
"coverage": "istanbul cover ./node_modules/jasmine-node/bin/jasmine-node test",
"travis": "istanbul cover ./node_modules/jasmine-node/bin/jasmine-node test --captureExceptions && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"browserify": "browserify lib/index.js -s spexLib -o spex.js"
},
"files": [
"lib",
"typescript"
],
"typings": "typescript/spex.d.ts",
"homepage": "https://github.com/vitaly-t/spex",
"repository": {
"type": "git",
"url": "https://github.com/vitaly-t/spex.git"
},
"bugs": {
"url": "https://github.com/vitaly-t/spex/issues",
"email": "vitaly.tomilov@gmail.com"
},
"keywords": [
"promise",
"throttle",
"throttling",
"load balancing"
],
"author": {
"name": "Vitaly Tomilov",
"email": "vitaly.tomilov@gmail.com"
},
"license": "MIT",
"engines": {
"node": ">=0.10",
"npm": ">=1.4"
},
"dependencies": {},
"devDependencies": {
"bluebird": "3.x",
"browserify": "13.x",
"coveralls": "2.x",
"istanbul": "0.4",
"jasmine-node": "1.x",
"jsdoc": "3.x",
"typescript": "^2.0.9"
}
}