-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.31 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
{
"name": "git-splainin",
"version": "1.0.0",
"description": "GitHub PR Template Chrome Extension",
"author": "Blaine Bublitz <[email protected]> (http://iceddev.com)",
"contributors": [],
"repository": "iceddev/git-splainin",
"license": "MIT",
"engines": {
"node": ">= 0.10"
},
"main": "index.js",
"files": [
"LICENSE",
"index.js"
],
"scripts": {
"test": "gulp lint",
"build": "gulp",
"postinstall": "gulp postinstall",
"release": "gulp release",
"serve": "webpack-dev-server",
"watch": "gulp --watch"
},
"dependencies": {
"alt": "^0.16.6",
"chromeback": "^0.1.0",
"classnames": "^2.1.1",
"react": "^0.13.3",
"lodash": "^3.8.0",
"rest": "^1.3.1",
"sovereign": "^0.1.1"
},
"devDependencies": {
"babel": "^5.5.4",
"babel-core": "^5.3.3",
"babel-loader": "^5.0.0",
"del": "^1.2.0",
"eslint": "^0.21.2",
"eslint-plugin-react": "^2.3.0",
"esprima-fb": "^15001.1.0-dev-harmony-fb",
"gulp": "git://github.com/gulpjs/gulp#4.0",
"gulp-eslint": "^0.12.0",
"gulp-jscs": "^1.6.0",
"gulp-util": "^3.0.4",
"gulp-zip": "^3.0.2",
"webpack": "^1.9.5",
"webpack-dev-server": "^1.8.2",
"when": "^3.7.3"
},
"keywords": [
"chrome extension",
"github",
"pull request",
"template"
]
}