forked from Avocarrot/stormer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 849 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": "stormer",
"version": "0.10.0",
"description": "The flexible Node.js ORM",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "NODE_ENV=test mocha --recursive test",
"cov": "NODE_ENV=test istanbul cover node_modules/.bin/_mocha -- --recursive -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Avocarrot/stormer.git"
},
"keywords": [
"orm",
"mysql",
"nosql",
"database",
"db"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Avocarrot/stormer/issues"
},
"homepage": "https://github.com/Avocarrot/stormer#readme",
"devDependencies": {
"chai": "^3.3.0",
"chai-things": "^0.2.0",
"mocha": "^2.3.3",
"sinon": "^1.17.1"
},
"dependencies": {
"bluebird": "^2.10.2"
}
}