-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.53 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
59
60
61
62
63
{
"name": "pg-async",
"version": "3.1.0",
"description": "PostgreSQL client for node.js designed for usage with ES7 async/await based on node-postgres (pg) module",
"main": "lib/index.js",
"scripts": {
"build": "gulp",
"test": "mocha --require babel-register",
"lint": "gulp eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/langpavel/node-pg-async.git"
},
"keywords": [
"pg",
"postgre",
"postgres",
"postgreSQL",
"libpq",
"database",
"rdbms",
"async",
"await",
"async-await",
"promise",
"bluebird",
"babel",
"ES6",
"ES7"
],
"author": "Pavel Lang <[email protected]> (https://github.com/langpavel)",
"license": "MIT",
"bugs": {
"url": "https://github.com/langpavel/node-pg-async/issues"
},
"homepage": "https://github.com/langpavel/node-pg-async#readme",
"dependencies": {
"bluebird": "^3.5.0",
"debug": "^4.0.0",
"pg": "^7.0.2"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.25.0",
"babel-eslint": "^8.0.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015-node5": "^1.2.0",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.1.2",
"del": "^3.0.0",
"eslint": "^4.2.0",
"eslint-config-strict": "^14.0.0",
"eslint-plugin-import": "^2.7.0",
"estraverse-fb": "^1.3.1",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-eslint": "^4.0.0",
"mocha": "^3.4.2",
"pg-native": "^2.0.1"
}
}