-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 928 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
{
"name": "madlib-promise-queue",
"description": "A general purpose queue'ing mechanism using promises",
"main": "lib/queue.js",
"version": "0.1.6",
"author": {
"name": "Mark Doeswijk",
"email": "[email protected]",
"url": "https://github.com/Qwerios"
},
"repository": {
"type": "git",
"url": "https://github.com/Qwerios/madlib-promise-queue.git"
},
"scripts": {
"test": "command -v grunt >/dev/null 2>&1 && grunt test || { echo >&2 'Grunt is not installed'; }",
"prepublish": "command -v grunt >/dev/null 2>&1 && grunt || { echo >&2 'Grunt is not installed'; }"
},
"devDependencies": {
"grunt-contrib-watch": "~0.6.1",
"grunt-contrib-coffee": "~0.12.0",
"grunt": "~0.4.5",
"coffee-script": "~1.8.0",
"chai": "~1.10.0",
"grunt-mocha-test": "~0.12.7"
},
"dependencies": {
"q": "~1.1.2"
},
"licenses": [
{
"type": "BSD"
}
]
}