forked from taboola/easy-peasy-bot
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1015 Bytes
/
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
{
"name": "usability-rover",
"version": "0.0.1",
"description": "The usability bot.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/NirBenita/easy-peasy-bot"
},
"scripts": {
"build": "npm run clean && babel src --out-dir lib",
"clean": "rm -rf build",
"start": "nodemon lib/index.js",
"watch": "babel src --watch -d lib --source-maps inline",
"test": "babel-node tests/test.js | faucet",
"test-clean": "babel-node tests/test.js"
},
"keywords": [
"slack",
"bot"
],
"author": "Nir Benita",
"license": "MIT",
"bugs": {
"url": "https://github.com/DEGoodmanWilson/easy-peasy-bot-app/issues"
},
"homepage": "https://github.com/DEGoodmanWilson/easy-peasy-bot-app#readme",
"engines": {
"node": "5.1.1"
},
"dependencies": {
"botkit": "0.2.2",
"botkit-storage-mongo": "^1.0.2",
"mongodb": "^1.4.39"
},
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-preset-env": "^1.1.1"
}
}