-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
55 lines (55 loc) · 1.73 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
{
"name": "delta-bot-three",
"version": "3.5.7",
"description": "The third rewrite of delta bot",
"main": "dist/index.js",
"scripts": {
"start": "nodemon ./src/index.js -x babel-node -w ./i18n -w ./src -- --inspect",
"startProduction": "npm run build && forever start --uid \"production\" -o out.log -e err.log ./dist/index.js",
"start-debug": "nodemon ./src/index.js -x babel-node -w ./i18n -w ./src -- --debug --bypass-op-check",
"test": "npm run eslint && jest && npm run build",
"eslint": "eslint ./src",
"build": "babel src --out-dir dist --ignore spec.js",
"list": "forever list",
"cleanlogs": "forever cleanlogs",
"stop": "forever stop production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MystK/delta-bot-three.git"
},
"author": "Antoine Pham [email protected]",
"license": "\tLGPL-3.0",
"bugs": {
"url": "https://github.com/MystK/delta-bot-three/issues"
},
"homepage": "https://github.com/MystK/delta-bot-three#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^6.1.2",
"babel-jest": "^17.0.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-3": "^6.5.0",
"eslint": "^3.4.0",
"eslint-config-airbnb-base": "^5.0.3",
"eslint-plugin-import": "^1.14.0",
"jest-cli": "^17.0.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"colors": "^1.1.2",
"forever": "^0.15.3",
"form-urlencoded": "^1.2.0",
"html-entities": "^1.2.0",
"lodash": "^4.3.0",
"mkdirp": "^0.5.1",
"moment": "^2.17.1",
"node-fetch": "^1.3.3",
"promisify-node": "^0.3.0",
"query-string": "^3.0.0"
},
"jest": {
"testEnvironment": "node"
}
}