-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
58 lines (58 loc) · 1.32 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": "streen",
"description": "An IPC wrapper for twitch-irc",
"main": "server.js",
"version": "0.5.0",
"repository": {
"type": "git",
"url": "https://github.com/SupportClass/streen.git"
},
"bugs": "https://github.com/SupportClass/streen/issues",
"license": "MIT",
"dependencies": {
"@slack/client": "^3.10.0",
"convict": "^4.0.0",
"express": "^4.15.3",
"listify": "^1.0.0",
"node-pg-migrate": "^2.7.0",
"pg-connection-string": "^0.1.3",
"pg-promise": "^5.6.2",
"request-promise": "^4.2.1",
"socket.io": "^2.2.0",
"stopcock": "^1.1.0",
"tmi.js": "^1.4.5",
"winston": "^2.3.1"
},
"engines": {
"node": ">=8.6.0"
},
"files": [
"AUTHORS",
"LICENSE",
"README.md",
"index.js",
"lib/"
],
"devDependencies": {
"ava": "^2.3.0",
"coveralls": "^3.0.0",
"eslint": "^6.1.0",
"eslint-config-xo": "^0.18.2",
"eslint-plugin-ava": "^8.0.0",
"mockery": "^2.1.0",
"nyc": "^11.1.0",
"socket.io-client": "^2.2.0"
},
"scripts": {
"static": "eslint server.js lib/**/*.js",
"test": "npm run static && nyc ava --timeout=20s --serial",
"start": "node server.js",
"create_migration": "pg-migrate create",
"migrate": "pg-migrate up"
},
"greenkeeper": {
"ignore": [
"pg-promise"
]
}
}