-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.43 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
49
50
51
52
53
54
55
56
57
{
"name": "pg-pilot",
"version": "0.1.2",
"description": "Manage your PostgreSQL databases in the browser",
"main": "server.js",
"preferGlobal": true,
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"coverage": "istanbul cover _mocha",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"build": "react-scripts build",
"eject": "react-scripts eject"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saidM/pg-pilot.git"
},
"keywords": [
"postgresql",
"postgres",
"database",
"db",
"sql"
],
"author": "Saïd Mimouni <[email protected]>",
"license": "ISC",
"bin": {
"pg-pilot": "./bin/pg-pilot.js"
},
"bugs": {
"url": "https://github.com/saidM/pg-pilot/issues"
},
"homepage": "https://localhost:8080/",
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"minimist": "^1.2.0",
"pg": "^6.1.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-router": "^3.0.0",
"axios": "^0.15.2"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"coveralls": "^2.11.15",
"istanbul": "^0.4.5",
"mocha": "^3.1.0",
"mocha-lcov-reporter": "^1.2.0",
"supertest": "^2.0.0",
"react-scripts": "^0.7.0"
}
}