-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
32 lines (32 loc) · 1022 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
{
"name": "jugglingdb-postgres",
"version": "0.1.0",
"description": "PostgreSQL adapter for JugglingDB",
"main": "index.js",
"scripts": {
"test": "make test",
"test-coverage": "./defaultConfig.sh && istanbul cover node_modules/.bin/_mocha -- --reporter landing --no-exit --require ./test/init.js --check-leaks test/",
"test-ci": "./defaultConfig.sh && istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --require ./test/init.js --check-leaks test/"
},
"dependencies": {
"jugglingdb": "2.0.0-rc5",
"pg": "^6.0.2"
},
"devDependencies": {
"eslint": "^3.2.2",
"eslint-config-1602": "^1.2.0",
"istanbul": "^0.4.4",
"mocha": "^1.8.2",
"should": "^3.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/jugglingdb/postgres.git"
},
"author": "Anatoliy Chakkaev <[email protected]>",
"license": "MIT",
"contributors": [
"Bob Matcuk (http://squeg.net/)",
"Scott Nonnenberg ([email protected])"
]
}