-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.09 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.09 KB
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
{
"name": "noonbot",
"version": "1.0.0",
"description": "Slack bot for Noon Pacific",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=prod node src/index.js",
"dev": "NODE_ENV=dev nodemon --ignore NoonPacific.json --ignore db_slackbutton_bot/ src/index.js",
"prod": "NODE_ENV=prod node src/index.js",
"lint": "eslint .",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NoonPacific/Noon-Bot.git"
},
"keywords": [
"slackbot",
"bot",
"slack",
"noon",
"pacific"
],
"author": "coffee-cup",
"license": "MIT",
"bugs": {
"url": "https://github.com/NoonPacific/Noon-Bot/issues"
},
"homepage": "https://github.com/NoonPacific/Noon-Bot#readme",
"dependencies": {
"axios": "^0.15.2",
"babel-polyfill": "^6.16.0",
"beepboop-botkit": "^1.1.2",
"botkit": "0.2.2",
"cron": "^1.1.0",
"moment": "^2.13.0",
"underscore": "^1.8.3",
"white-label-js": "^1.0.0"
},
"devDependencies": {
"eslint": "^3.8.1",
"eslint-config-airbnb": "^8.0.0",
"nodemon": "^1.11.0"
}
}