forked from kentaro-m/lambda-pr-notify-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.06 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.06 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
{
"name": "lambda-pr-notify-bot",
"version": "0.1.0",
"description": "A slackbot that reminds reviewers to review their pull requests.",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test nyc --reporter=lcov --reporter=text mocha --require babel-core/register --reporter spec test/**/*.spec.js",
"package": "babel ./src/ -d ./dist/"
},
"author": "Kentaro Matsushita",
"license": "MIT",
"dependencies": {
"@slack/client": "^3.10.0",
"babel-cli": "^6.24.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"bluebird": "^3.5.0",
"config": "^1.26.1",
"crypto": "0.0.3",
"github": "^9.2.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.3.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"mocha": "^4.0.1",
"nyc": "^11.2.1",
"sinon": "^4.0.1"
}
}