-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 956 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 956 Bytes
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
{
"name": "holons-sql",
"version": "0.0.0",
"description": "holon models as a DAG using bookshelf",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"bookshelfw": "git+https://github.com/holonomy/bookshelfw.git",
"bluebird": "~1.0.4",
"create-error": "~0.3.1",
"underscore": "~1.6.0"
},
"devDependencies": {
"mocha-as-promised": "~2.0.0",
"chai-as-promised": "~4.1.0",
"chai": "~1.9.0",
"mocha": "~1.17.1"
},
"scripts": {
"migrate": "node_modules/bookshelfw/node_modules/bookshelf/node_modules/knex/bin/knex --config node_modules/bookshelfw/config.js migrate:latest",
"test": "(export NODE_ENV=test; npm run migrate && mocha -R spec -t 10s test/*.js)"
},
"repository": {
"type": "git",
"url": "git://github.com/holonomy/holons-sql.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/holonomy/holons-sql/issues"
}
}