-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.44 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": "pg-client",
"version": "0.0.5",
"description": "Promise-based wrapper for node-postgres library designed for easy use with ES7 async/await.",
"repository": "kriasoft/node-pg-client",
"author": "Kriasoft <support@kriasoft.com> (http://www.kriasoft.com)",
"contributors": [
"Konstantin Tarkus <hello@tarkus.me>"
],
"license": "MIT",
"keywords": [
"pg",
"postgre",
"postgres",
"postgresql",
"libpq",
"database",
"rdbms",
"async",
"await",
"async-await",
"promise",
"bluebird",
"babel",
"ES6",
"ES7"
],
"main": "lib/index.js",
"dependencies": {
"babel-runtime": "^6.5.0",
"bluebird": "^3.3.1",
"pg": "^4.4.6"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^5.0.0",
"babel-plugin-transform-runtime": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"eslint": "^2.2.0",
"eslint-config-airbnb": "6.0.1",
"eslint-plugin-react": "^4.0.0",
"mocha": "^2.4.5",
"react": "^0.14.7",
"rimraf": "^2.5.2",
"sinon": "^1.17.3"
},
"scripts": {
"lint": "eslint src test",
"test": "eslint src test && mocha test --compilers js:babel-core/register",
"build": "rimraf lib && babel src --out-dir lib",
"prepublish": "rimraf lib && babel src --out-dir lib"
}
}