-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
{
"name": "pglistend",
"version": "0.2.1-0",
"description": "pglistend - Postgres LISTEN Daemon using Node.js/Systemd",
"scripts": {
"lint:js": "eslint .",
"py:pep8": "pycodestyle setup/setup.py && pylint setup/setup.py",
"lint": "npm run lint:js && npm run py:pep8",
"dev": "babel-node src/index.js --config=.pglistend.yml",
"start": "nodemon --exec 'npm run lint && npm run dev'",
"clean": "rm -rf dist/",
"build": "npm run clean && babel src/ -d dist/",
"prepublish": "npm run build"
},
"keywords": [
"postgresql",
"listen",
"notify",
"daemon",
"pglistend"
],
"author": "Kabir Baidhya <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kabirbaidhya/pglistend.git"
},
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.9.0",
"deep-assign": "^2.0.0",
"es6-shim": "^0.35.1",
"lodash.debounce": "^4.0.6",
"lodash.throttle": "^4.0.1",
"pg": "^6.0.1",
"winston": "^2.2.0",
"yamljs": "^0.2.8"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^5.0.0",
"babel-preset-es2015": "^6.9.0",
"babel-plugin-transform-es2015-for-of": "^6.8.0",
"eslint": "2.2.0",
"nodemon": "^1.9.2"
},
"preferGlobal": true,
"bin": {
"pglisten": "bin/pglisten"
},
"files": [
"bin/",
"dist/",
"setup",
".pglistend.yml.dist",
".pglistend-connection.yml.dist",
"listener.js.dist"
]
}