forked from WFCD/genesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.17 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "genesis",
"version": "2.0.0-alpha",
"description": "A Warframe bot for your Discord server or clan Star",
"main": "main.js",
"scripts": {
"test": "eslint main.js src/",
"build-docs": "node_modules/.bin/jsdoc -t ./node_modules/ink-docstrap/template -c .github/docs/jsdoc.conf -R README.md -r main.js src/. -d docs",
"start": "pm2 start genesis.json && pm2 logs genesis",
"preinstall": "npm i -g pm2",
"restart": "pm2 delete genesis && pm2 start genesis.json && pm2 logs genesis",
"stop": "pm2 delete genesis",
"uninstall": "pm2 kill && rm -rf node_modules/ && npm uninstall -g pm2",
"update:genesis": "pm2 delete genesis && git pull && npm restart || npm start",
"lint": "eslint main.js src/",
"lint:fix": "eslint main.js src/ --fix"
},
"repository": {
"type": "git",
"url": "http://github.com/wfcd/genesis.git"
},
"bugs": {
"url": "http://github.com/wfcd/genesis/issues"
},
"homepage": "http://genesis.warframestat.us",
"keywords": [
"warframe",
"genesis",
"discord"
],
"author": "warframe-community-developers",
"contributors": [
"tobitenno <[email protected]> (https://github.com/tobitenno)",
"nspacestd (https://github.com/nspacestd)"
],
"dependencies": {
"bluebird": "^3.5.1",
"colors": "^1.3.2",
"decache": "^4.4.0",
"discord.js": "^11.4.2",
"greenkeeper-lockfile": "^1.14.0",
"jimp": "^0.5.3",
"json-query": "^2.2.2",
"mysql2": "^1.6.4",
"node-md-config": "^2.0.1",
"node-wikia": "0.0.3",
"pad-left": "^2.1.0",
"ping": "^0.2.2",
"progress": "^2.0.0",
"raven": "^2.6.4",
"request-promise": "^4.2.2",
"right-pad": "^1.0.1",
"sql-template-strings": "^2.2.2",
"twitter": "^1.7.1",
"warframe-name-generator": "^1.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.5.5"
},
"license": "Apache-2.0",
"engines": {
"node": ">=8.9.2"
}
}