-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 952 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
36
37
38
39
{
"name" : "ndb",
"preferGlobal" : "false",
"version" : "0.0.9",
"author" : "Nick Dancer <[email protected]>",
"description" : "An in process key/value data store",
"scripts" : {
"build" : "coffee -c lib/",
"clean" : "rm lib/*.js",
"postinstall": "npm run build",
"test" : "npm run-script acceptance || npm run-script unit",
"unit" : "mocha --compilers coffee:coffee-script --require should test/unit/*.coffee",
"acceptance" : "cucumber.js features/*.feature"
},
"main" : "index",
"repository": {
"type" : "git",
"url" : "https://github.com/njdancer/ndb.git"
},
"keywords": [
"database",
"db"
],
"dependencies" : {
"coffee-script" : "1.3.x",
"node-uuid" : "1.3.x",
"wrench" : "1.3.x"
},
"devDependencies" : {
"mocha" : "1.3.x",
"cucumber" : "0.2.x",
"should" : "0.6.x",
"sinon" : "1.4.x"
},
"license" : "MIT",
"engine" : {
"node" : ">=0.8.1"
}
}