-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.24 KB
/
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
44
45
46
47
48
{
"name": "postgres",
"description": "Start and stop a PostgreSQL server.",
"keywords": [
"test",
"postgresql",
"server",
"manager"
],
"version": "0.4.0",
"license": "MIT",
"homepage": "https://github.com/BrandonZacharie/node-postgres#readme",
"bugs": {
"url": "https://github.com/BrandonZacharie/node-postgres/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BrandonZacharie/node-postgres.git"
},
"author": {
"name": "Brandon Zacharie",
"email": "[email protected]"
},
"main": "Postgres.js",
"scripts": {
"test": "istanbul cover -x test.js _mocha",
"lint": "npm run eslint && npm run remark",
"eslint": "eslint --ignore-path .gitignore **/*.js",
"remark": "remark --ignore-path .gitignore --use lint --quiet --frail ."
},
"dependencies": {
"promise-queue": "^2.2.3"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"eslint": "^6.4.0",
"fs-promise": "^2.0.3",
"istanbul": "^0.4.5",
"mocha": "^6.2.0",
"pg": "^7.12.1",
"remark-cli": "^7.0.0",
"remark-lint": "^6.0.5",
"remark-preset-lint-consistent": "^2.0.3",
"remark-preset-lint-recommended": "^3.0.3",
"uuid": "^3.3.3"
}
}