-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.27 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.27 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "pr-summary",
"version": "2.9.4",
"description": "Summarize Pull Request",
"main": "lib",
"scripts": {
"lint": "eslint",
"prepublish": "rm -r lib;babel src -d lib --source-maps inline",
"js": "node bin/prs",
"test": "NODE_ENV=test mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kompiro/pr-summary.git"
},
"keywords": [
"GitHub",
"Pull Request"
],
"files": [
"bin",
"lib",
"templates"
],
"bin": {
"prs": "./bin/prs",
"prs-pr-info": "./bin/prs-pr-info",
"prs-prepare-release": "./bin/prs-prepare-release",
"prs-daily-report": "./bin/prs-daily-report"
},
"author": "Hiroki Kondo",
"license": "MIT",
"bugs": {
"url": "https://github.com/kompiro/pr-summary/issues"
},
"homepage": "https://github.com/kompiro/pr-summary#readme",
"dependencies": {
"@octokit/rest": "^15.1.8",
"babel-polyfill": "^6.8.0",
"commander": "^2.9.0",
"ejs": "^2.5.2",
"lodash": "^4.17.5",
"lokka": "^1.7.0",
"lokka-transport-http": "^1.6.1",
"moment": "^2.17.1"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"eslint": "^3.13.0",
"mocha": "^3.2.0",
"nock": "^9.0.2",
"power-assert": "^1.4.2"
}
}