-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
43 lines (43 loc) · 999 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
42
43
{
"name": "simple-postgres",
"version": "5.0.0",
"description": "a minimal postgres interface for node",
"main": "src/index.js",
"keywords": [
"pg",
"simple",
"postgres",
"postgresql",
"database"
],
"author": "Madeline Davies <[email protected]>",
"license": "MIT",
"dependencies": {
"find-root": "^1.1.0",
"pg": "^7.4.3",
"pg-connection-string": "^0.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/madd512/simple-postgres.git"
},
"scripts": {
"lint": "standard src/**/*.js; standard --parser babel-eslint test/**/*.js",
"test": "NODE_ENV=test node test/test.js",
"cover": "NODE_ENV=test istanbul cover -x test/test.js built-test/test.js"
},
"devDependencies": {
"babel-eslint": "^6.0.0",
"blue-tape": "^0.2.0",
"git-validate": "^2.1.4",
"istanbul": "^0.4.3",
"standard": "^7.1.1"
},
"standard": {
"parser": "babel-eslint"
},
"pre-commit": [
"lint",
"test"
]
}