-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 777 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 777 Bytes
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
{
"name": "robot",
"version": "1.0.0-alpha",
"description": "My first robot",
"main": "robot.js",
"scripts": {
"start": "node robot.js",
"db-init": "node scripts/db_init.js",
"test-unit": "./node_modules/.bin/mocha --globals setImmediate,clearImmediate --ui tdd --check-leaks --colors -t 30000 --reporter spec 'test/**/*_spec.js'"
},
"author": "Gino Bustelo",
"license": "Apache-2.0",
"dependencies": {
"ascii-table": "0.0.9",
"botkit": "^0.2.2",
"mixin-object": "^2.0.1",
"moment": "^2.14.1",
"pg": "^6.0.3",
"sequelize": "^3.23.6"
},
"devDependencies": {
"chai": "^3.4.1",
"mocha": "^2.3.4",
"proxyquire": "^1.7.10",
"sequelize-cli": "^2.4.0",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0"
}
}