forked from thingdom/node-neo4j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.21 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
{
"name": "neo4j",
"description": "Neo4j driver (REST API client) for Node.js",
"version": "0.2.19",
"author": "The Thingdom <info@thethingdom.com>",
"contributors": [
"Daniel Gasienica <daniel@gasienica.ch>",
"Aseem Kishore <aseem.kishore@gmail.com>",
"Sergio Haro <sergio.haro.jr@gmail.com>"
],
"main": "./lib",
"dependencies": {
"coffee-script": "~1.3.1",
"http-status": "~0.1.0",
"request": "~2.9.202",
"streamline": "~0.4.0"
},
"devDependencies": {
"codo": "~1.5.1",
"expect.js": "~0.1.2",
"mocha": "~1.3.0"
},
"engines": {
"node": ">= 0.6"
},
"scripts": {
"build": "_coffee -c lib/",
"clean": "rm lib/*.js",
"codo": "codo && codo --server",
"postinstall": "npm run build",
"test": "mocha"
},
"keywords": [
"neo4j", "graph", "database", "driver", "rest", "api", "client"
],
"licenses": [{
"type": "Apache License, Version 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}],
"repository" : {
"type" : "git",
"url" : "https://github.com/thingdom/node-neo4j.git"
}
}