-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.33 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
{
"engines": {
"node": ">=6",
"npm": ">=3.3"
},
"name": "github-summary",
"version": "0.0.1",
"description": "",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"files": [
"dist",
"lib",
"src"
],
"scripts": {
"clean": "rimraf lib dist",
"build:prod": "NODE_ENV=production webpack --config webpack.config.prod.js",
"build:lib": "babel src -d lib",
"build": "npm run build:lib && npm run build:prod",
"start": "node server/index.js",
"lint": "eslint .",
"mocha": "NODE_ENV=test mocha --compilers js:babel-register --recursive 'test/**/*_spec.js'",
"typecheck": "flow",
"test": "npm run typecheck && npm run lint && npm run mocha",
"test:watch": "npm run mocha -- -w",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"Github",
"nippou",
"summary",
"ES6"
],
"author": "zenoplex <zenoplex@gmail.com> (http://zenoplex.jp)",
"license": "MIT",
"dependencies": {
"axios": "^0.12.0",
"lodash.drop": "^4.0.4",
"lodash.groupby": "^4.4.0",
"lodash.uniqby": "^4.5.0",
"parse-link-header": "^0.4.1",
"to-markdown": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-syntax-trailing-function-commas": "^6.8.0",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-power-assert": "^1.0.0",
"babel-register": "^6.8.0",
"eslint": "^2.11.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-import-resolver-webpack": "^0.3.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-flow-vars": "^0.4.0",
"eslint-plugin-import": "^1.8.1",
"express": "^4.13.4",
"flow-bin": "^0.27.0",
"html-webpack-plugin": "^2.20.0",
"mocha": "^2.5.3",
"path": "^0.12.7",
"power-assert": "^1.4.1",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"peerDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/zenoplex/github-summary"
}
}