forked from kengz/aiva
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.87 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "aiva",
"version": "4.2.0",
"description": "General-purpose virtual assistant for developers.",
"private": true,
"main": "index.js",
"scripts": {
"shell": "NODE_ENV=development bin/hubot",
"setup": "bin/setup",
"lint": "eslint db/ lib/ scripts/ src/ test/ --fix",
"test": "bin/test",
"_test": "./node_modules/.bin/istanbul cover -x 'db/**' ./node_modules/mocha/bin/_mocha",
"posttest": "rm -rf .hubot_history brain.json npm-debug.log*",
"clear": "rm -rf coverage htmlcov .coverage *.xml npm-debug.log* logs",
"start": "bin/start",
"stop": "bin/stop",
"_stop": "./node_modules/forever/bin/forever stopall",
"enter": "bin/enter",
"reset": "bin/reset",
"production": "mkdir -p ./logs; NODE_ENV=production ./node_modules/forever/bin/forever --minUptime=1000 --spinSleepTime=1000 --killSignal=SIGTERM --uid aiva-production -m 10 -a index.js | tee ./logs/aiva-production.log",
"development": "mkdir -p ./logs; NODE_ENV=development ./node_modules/forever/bin/forever --minUptime=1000 --spinSleepTime=1000 --killSignal=SIGTERM --uid aiva-development -m 10 -a index.js | tee ./logs/aiva-development.log",
"server": "node src/start-io.js",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kengz/aiva.git"
},
"keywords": [
"bot",
"aiva",
"virtual assistant",
"chatbot",
"hubot",
"artificial intelligence"
],
"author": "kengz kengzwl@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/kengz/aiva/issues"
},
"homepage": "https://github.com/kengz/aiva#readme",
"dependencies": {
"bluebird": "^3.1.1",
"cgkb": "^1.0.9",
"co": "^4.6.0",
"config": "^1.21.0",
"cron": "^1.2.1",
"date.js": "^0.3.1",
"express": "^4.13.4",
"forever": "^0.15.2",
"hubot": "^2.18.0",
"hubot-diagnostics": "0.0.1",
"hubot-fb": "^5.0.0",
"hubot-slack": "^4.0.2",
"hubot-telegram": "^0.1.0",
"lomath": "latest",
"mysql": "^2.12.0",
"mysql2": "^1.1.2",
"ngrok": "^2.2.3",
"poly-socketio": "^1.1.4",
"portscanner": "^2.1.1",
"randombytes": "^2.0.3",
"require-dir": "^0.3.0",
"sequelize": "^3.24.3",
"socket.io-client": "^2.0.2",
"winston": "^2.2.0",
"snyk": "^1.41.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"codacy-coverage": "^2.0.0",
"coffee-script": "^1.10.0",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"hubot-test-helper": "^1.4.4",
"istanbul": "^0.4.2",
"mocha": "^3.0.2",
"mocha-lcov-reporter": "^1.2.0",
"sequelize-cli": "^2.4.0",
"sinon": "^1.17.6"
},
"engines": {
"node": ">=6"
},
"snyk": true
}