-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "@dvdagames/elite-dangerous-journal-server",
"version": "3.2.0",
"description": "WebSocket server for broadcasting Elite Dangerous Captain's Journal updates",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/**/*js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "dvdagames",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DVDAGames/elite-dangerous-journal-server.git"
},
"private": false,
"keywords": [
"elite dangerous",
"journal",
"elite",
"dangerous",
"ed"
],
"bugs": {
"url": "https://github.com/DVDAGames/elite-dangerous-journal-server/issues"
},
"homepage": "https://github.com/DVDAGames/elite-dangerous-journal-server",
"dependencies": {
"bonjour": "^3.5.0",
"chalk": "^2.1.0",
"chokidar": "^1.7.0",
"lodash": "^4.17.4",
"moment": "^2.19.1",
"node-dir": "^0.1.17",
"uuid": "^3.1.0",
"ws": "^3.2.0"
},
"devDependencies": {
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"pre-commit": "^1.2.2"
},
"pre-commit": [
"lint"
]
}