-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "reporterbot",
"version": "1.0.0",
"description": "A slack bot that gets reports on demand",
"main": "./dist/index.js",
"scripts": {
"dev": "babel-node src/index.js",
"prod": "NODE_ENV=production node dist/index.js",
"build": "rm -rf ./dist/ && babel src --out-dir dist/ --copy-files",
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calvinkarundu/reporterbot.git"
},
"author": "Calvin Karundu <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/calvinkarundu/reporterbot/issues"
},
"homepage": "https://github.com/calvinkarundu/reporterbot#readme",
"dependencies": {
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.2",
"config": "^1.28.1",
"csv-write-stream": "^2.0.0",
"express": "^4.16.2",
"mkdirp": "^0.5.1",
"morgan": "^1.9.0",
"request": "^2.83.0",
"tracer": "^0.8.11"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0"
}
}