-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 976 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
{
"name": "stack-queue",
"version": "0.0.6",
"description": "Execution stacks compatible with promises",
"main": "index.js",
"scripts": {
"test": "node node_modules/mocha/bin/mocha --globals setImmediate,clearImmediate --check-leaks --colors -t 10000 --reporter spec $(find test/* -name '*.test.js')"
},
"repository": {
"type": "git",
"url": "https://github.com/findhit/stack-queue.git"
},
"keywords": [
"stack",
"queue",
"promisable",
"bluebird",
"connect",
"http",
"node",
"express",
"util"
],
"author": "José Moreira <jose.moreira@findhit.com>",
"license": "GPL v3",
"bugs": {
"url": "https://github.com/findhit/stack-queue/issues"
},
"homepage": "https://github.com/findhit/stack-queue",
"dependencies": {
"bluebird": "^2.4.2",
"debug": "^2.1.0",
"findhit-util": "^0.2.3"
},
"devDependencies": {
"chai": "^1.10.0",
"mocha": "^2.1.0",
"sinon": "^1.12.2"
}
}