-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "github2slack",
"version": "0.0.0",
"private": true,
"main": "dist/www.js",
"scripts": {
"start": "node -r dotenv/config -r source-map-support/register dist/www.js",
"lint": "eslint",
"lint:all": "eslint . --ext .js",
"flow": "flow",
"test": "mocha --opts mocha.all.opts --recursive test/",
"check": "npm run lint:all && npm run flow && npm run test",
"coverage": "cross-env NODE_ENV=test nyc mocha --opts mocha.all.opts --recursive test/",
"build": "webpack",
"watch": "webpack --watch",
"gen:package": "babel-node task/generate.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/snakazawa/github2slack.git"
},
"author": "snakazawa",
"license": "MIT",
"bugs": {
"url": "https://github.com/snakazawa/github2slack/issues"
},
"homepage": "https://github.com/snakazawa/github2slack#readme",
"engines": {
"node": "~8.1.2"
},
"nyc": {
"reporter": [
"text",
"text-summary",
"lcov",
"html"
],
"exclude": [
"test/",
"dist/",
"node_modules/",
"flow-typed/"
],
"include": [
"src/"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false,
"all": true
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-power-assert": "^1.0.0",
"codeclimate-test-reporter": "^0.5.0",
"commander": "^2.9.0",
"config": "^1.26.1",
"cross-env": "^5.0.1",
"debug": "^2.6.8",
"difflib": "^0.2.4",
"dotenv": "^4.0.0",
"eslint": "^4.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-import": "^2.5.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.48.0",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-flow-declarations": "^0.1.0",
"koa-json": "^2.0.2",
"koa-logger": "^3.0.0",
"koa-router": "^7.2.0",
"mocha": "^3.4.2",
"nyc": "^11.0.3",
"power-assert": "^1.4.4",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"source-map-support": "^0.4.15",
"webpack": "^3.0.0"
}
}