-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.29 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
58
{
"name": "@linkfuture/pg-api",
"version": "1.0.7",
"description": "RESTful API for PostgreSQL",
"main": "./lib/index.js",
"scripts": {
"test": "mocha ./test --exit",
"check": "eslint .",
"release": "npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyokin/pg-api.git"
},
"keywords": [
"postgres",
"postgre",
"postgresql",
"pg",
"database",
"restful",
"api",
"json",
"linkfuture"
],
"author": {
"name": "Cyokin Zhang",
"email": "half_6@hotmail.com",
"url": "http://cyokin.wordpress.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/cyokin/pg-api/issues"
},
"homepage": "https://github.com/cyokin/pg-api#readme",
"dependencies": {
"pg-promise": "10.x",
"express": "~4.14.0"
},
"devDependencies": {
"chai": "*",
"chai-http": "*",
"mocha": "*",
"mochawesome": "*",
"body-parser": "~1.15.2",
"babel-eslint": "^8.0.1",
"eslint": "^4.9.0",
"eslint-config-formidable": "^3.0.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.3.1",
"prettier": "^1.7.4"
},
"engines": {
"node": ">= 7.0.0"
}
}