-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.4 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.4 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
46
47
48
49
50
51
52
{
"name": "parkmebot",
"version": "1.0.0",
"description": "\"The bot that helps you find a spot!\"",
"main": ".dist/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "NODE_ENV=development babel-node src/index.js",
"build": "rm -rf ./dist/ && babel src --out-dir dist/ --copy-files",
"prod": "NODE_ENV=production node dist/index.js",
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/izzydoesit/parkMeBot.git"
},
"keywords": [
"slack",
"bot"
],
"author": "Israel D. Matos",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/izzydoesit/parkMeBot/issues"
},
"homepage": "https://github.com/izzydoesit/parkMeBot#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.18.3",
"botkit": "^0.6.15",
"botkit-storage-mongo": "^1.0.7",
"config": "^1.30.0",
"csv-write-stream": "^2.0.0",
"debug": "^3.1.0",
"eslint": "^5.1.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"express": "^4.16.3",
"mkdirp": "^0.5.1",
"mongodb": "^3.1.1",
"mongoose": "^5.2.4",
"morgan": "^1.9.0",
"request": "^2.87.0",
"tracer": "^0.9.1"
},
"devDependencies": {
"nodemon": "^1.18.2"
}
}