-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 942 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
{
"name": "readme-slack",
"version": "0.0.1",
"description": "Slack slash command for arkiv.abakus.no",
"main": "index.js",
"scripts": {
"start": "babel-watch app.js",
"build": "rm -rf dist/ && babel app.js confluence-credentials.js -d dist/ && babel api/ -d dist/api/",
"test": "mocha test",
"lint": "eslint app.js api/ test/"
},
"author": "Mats Byrkjeland",
"license": "MIT",
"dependencies": {
"base-64": "^0.1.0",
"body-parser": "^1.15.2",
"cheerio": "^0.22.0",
"express": "^4.14.0",
"request": "^2.75.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-preset-es2015": "^6.16.0",
"babel-watch": "^2.0.3-rc0",
"eslint": "^3.7.1",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-config-es2015": "^1.1.0",
"eslint-plugin-import": "^1.16.0",
"mocha": "^3.1.2",
"should": "^11.1.1",
"supertest": "^2.0.0"
}
}