-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 961 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
{
"name": "@ecor/pgdb",
"version": "1.0.0-beta.1",
"description": "A PostgreSQL client wrapper for use within an API service.",
"main": "index.js",
"scripts": {
"test": "npm run test:unit && npm run test:syntax",
"test:unit": "tap -R spec ./test/**/*.js",
"test:syntax": "standard --verbose | snazzy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecorventures/pgdb.git"
},
"keywords": [
"pg",
"postgres",
"db"
],
"author": "Corey Butler",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/ecorventures/pgdb/issues"
},
"homepage": "https://github.com/ecorventures/pgdb#readme",
"devDependencies": {
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"tap": "^14.2.4",
"tape": "^4.10.2"
},
"dependencies": {
"localenvironment": "^1.0.2",
"musthave": "^1.0.2",
"pg": "^7.11.0"
},
"standard": {
"globals": [
"NGN"
]
}
}