-
Notifications
You must be signed in to change notification settings - Fork 135
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "neo4j",
"description": "Neo4j driver (REST API client) for Node.js",
"version": "1.1.1",
"author": "The Thingdom <[email protected]>",
"contributors": [
"Daniel Gasienica <[email protected]>",
"Aseem Kishore <[email protected]>",
"Sergio Haro <[email protected]>"
],
"main": "./lib",
"dependencies": {
"http-status": "^0.1.0",
"request": "^2.27.0"
},
"devDependencies": {
"chai": "^1.8.0",
"codo": "^1.5.0",
"coffee-script": "1.7.x",
"mocha": "^1.3.0",
"streamline": "^0.10.16"
},
"engines": {
"node": ">= 0.6"
},
"scripts": {
"build": "coffee -m -c lib/ && _coffee -m --standalone -c lib/",
"clean": "rm -f lib/*.{js,map}",
"codo": "codo && codo --server",
"prepublish": "npm run build",
"postpublish": "npm run clean",
"test": "mocha"
},
"keywords": [
"neo4j", "graph", "database", "driver", "rest", "api", "client"
],
"license": "Apache-2.0",
"repository" : {
"type" : "git",
"url" : "https://github.com/thingdom/node-neo4j.git"
}
}