forked from lnshi/node-cayley
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.1 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
{
"name": "node-cayley",
"version": "1.1.1",
"description": "Node.js client for open-source graph database cayley(https://github.com/cayleygraph/cayley).",
"main": "./index.js",
"scripts": {
"test": "./node_modules/istanbul/lib/cli.js cover ./node_modules/.bin/_mocha -- --check-leaks --timeout 10000 --sort ./test/index.js",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"homepage": "https://github.com/lnshi/node-cayley",
"bugs": {
"url": "https://github.com/lnshi/node-cayley/issues"
},
"license": "Apache License Version 2.0, January 2004",
"author": {
"name": "Leonard Shi",
"email": "[email protected]",
"url": "https://github.com/lnshi"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/lnshi/node-cayley.git"
},
"dependencies": {
"bluebird": "~3.4.7",
"request": "~2.79.0",
"shortid": "~2.2.6",
"winston": "~2.3.0"
},
"devDependencies": {
"chai": "~3.5.0",
"coveralls": "~2.12.0",
"istanbul": "~0.4.5",
"mocha": "~3.4.2"
},
"readmeFilename": "README.md"
}