-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.38 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
44
45
46
47
48
49
50
51
52
53
{
"name": "scottbot",
"version": "1.0.0",
"description": "A Slack bot built on Auth0's Webtask",
"main": "bot/index.js",
"scripts": {
"build": "rollup -c",
"postinstall": "cd bot && npm install",
"start": "babel-node ./cli/index.js",
"test": "mocha -r @babel/register -r @babel/polyfill --recursive -R nyan --inline-diffs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ScottRudiger/scottbot.git"
},
"keywords": [
"Webtask",
"Auth0",
"Slack",
"slackbot",
"bot"
],
"author": "Scott Rudiger",
"license": "ISC",
"bugs": {
"url": "https://github.com/ScottRudiger/scottbot/issues"
},
"homepage": "https://github.com/ScottRudiger/scottbot#readme",
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"async-af": "^7.0.0",
"chai": "^4.2.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"sinon": "^7.1.1",
"sinon-chai": "^3.3.0"
},
"dependencies": {
"@babel/core": "^7.2.0",
"@babel/node": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"chalk": "^2.4.1",
"clui": "^0.3.6",
"cryptiles": "^4.1.3",
"inquirer": "^6.2.1",
"rollup": "^0.67.4",
"rollup-plugin-terser": "^3.0.0"
}
}