-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.09 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.09 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
{
"name": "go-app-browser",
"version": "1.0.0",
"description": "Browser extension for Go app.",
"main": "index.js",
"scripts": {
"build:dev": "gulp",
"build:release": "gulp crx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectGo/Browser-Extension.git"
},
"keywords": [
"go-app",
"chrome",
"firefox",
"extension"
],
"author": "Alexander Baygeldin",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/ProjectGo/Browser-Extension/issues"
},
"homepage": "https://github.com/ProjectGo/Browser-Extension#readme",
"devDependencies": {
"babelify": "^6.4.0",
"browserify": "^10.2.4",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-crx": "git+https://github.com/PavelVanecek/gulp-crx.git",
"gulp-eslint": "^0.15.0",
"gulp-uglify": "^1.4.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"immutable": "^3.7.5",
"lodash": "^3.10.0",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-redux": "^4.0.0",
"redux": "^3.0.4"
}
}