-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 935 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
40
41
{
"name": "wellspring-orm",
"version": "0.3.4",
"description": "Opinionated, thin ORM for Node",
"main": "index.js",
"scripts": {
"test": "node_modules/nyc/bin/nyc.js node_modules/mocha/bin/mocha",
"lint": "node_modules/.bin/eslint .",
"docs": "http-server ./docs",
"build-docs": "jsdoc -r -c ./conf.json -d ./docs ."
},
"author": "",
"license": "MIT",
"config": {
"blanket": {
"pattern": [
"lib"
]
}
},
"dependencies": {
"command-line-args": "^4.0.7",
"command-line-usage": "^4.0.2",
"dotenv": "^4.0.0",
"moment": "^2.20.1",
"pg": "^7.4.0",
"pg-pubsub": "^0.3.0",
"protoduck": "^5.0.0",
"squel": "^5.12.0"
},
"devDependencies": {
"bluebird": "^3.5.1",
"chai": "^4.1.2",
"eslint": "^5.10.0",
"http-server": "^0.11.1",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"mocha": "^5.0.1",
"nyc": "^11.4.1"
}
}