-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
42
43
{
"name": "slackbot",
"version": "1.0.0",
"description": "A slackbot made by QUT to take over UQ",
"main": "src/index.js",
"scripts": {
"postinstall": "npm run compile",
"start": "./node_modules/.bin/babel-node --presets es2015 ./src/index.js",
"server": "node ./target/server/index.js",
"compile": "./node_modules/.bin/babel src --out-dir target --copy-files",
"lint": "eslint ./src",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codenetwork/SlackBot.git"
},
"keywords": [
"better",
"than",
"uq"
],
"author": "CodeNetwork",
"license": "MIT",
"bugs": {
"url": "https://github.com/codenetwork/SlackBot/issues"
},
"homepage": "https://github.com/codenetwork/SlackBot#readme",
"dependencies": {
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"@slack/client": "^3.6.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"mocha": "^3.1.0"
}
}