-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.28 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
{
"name": "qryq",
"preferGlobal": false,
"description": "express and run arbitrary sets of dependent queries as directed acyclic graphs.",
"author": [
"bguiz"
],
"config": {
"defaults": {},
"limits": {}
},
"homepage": "https://github.com/bguiz/qryq",
"bugs": {
"url": "https://github.com/bguiz/qryq/issues"
},
"version": "1.0.0-rc1",
"engines": {
"node": ">= 0.8.10"
},
"dependencies": {
"q": "~0.9.6"
},
"devDependencies": {
"coveralls": "^2.11.2",
"istanbul": "^0.3.13",
"jasmine-node": "^2.0.0",
"jshint": "^2.6.3",
"jshint-stylish": "^1.0.1"
},
"scripts": {
"test": "node ./node_modules/jasmine-node/bin/jasmine-node test",
"lint": "./node_modules/jshint/bin/jshint --verbose --reporter ./node_modules/jshint-stylish .",
"cover": "node ./node_modules/istanbul/lib/cli cover ./node_modules/jasmine-node/bin/jasmine-node test",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"main": "qryq.js",
"repository": {
"type": "git",
"url": "https://github.com/bguiz/qryq.git"
},
"keywords": [
"promise",
"async",
"dependencies",
"query management"
],
"license": {
"type": "GPL v3",
"url": "http://opensource.org/licenses/GPL-3.0"
}
}