-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 954 Bytes
/
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
{
"name": "winston-pg",
"version": "0.0.4",
"description": "winston postgres transport",
"main": "lib/index.js",
"scripts": {
"build": "NODE_ENV=production babel src -d lib/",
"prepublish": "npm run clean && npm run build",
"clean": "rimraf lib/",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Madadata/winston-pg.git"
},
"keywords": [
"winston",
"postgres",
"transport",
"pg"
],
"author": "Jiayu Liu",
"license": "MIT",
"bugs": {
"url": "https://github.com/Madadata/winston-pg/issues"
},
"homepage": "https://github.com/Madadata/winston-pg#readme",
"peerDependencies": {
"winston": "^2.2.0",
"pg": "^4.5.6"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"mocha": "^2.5.3",
"pg": "^4.5.0",
"rimraf": "^2.5.2",
"winston": "^2.2.0"
}
}