-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "flambe",
"version": "1.1.4",
"main": "src/app.js",
"license": "MIT",
"scripts": {
"build": "gulp",
"build:chrome": "cross-env ENV=chrome gulp",
"debug": "cross-env DEBUG=true gulp",
"debug:chrome": "cross-env ENV=chrome DEBUG=true gulp",
"start": "yarn build && web-ext run --source-dir=./dist --firefox=firefoxdeveloperedition"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/preset-env": "^7.3.1",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"cross-env": "^5.2.0",
"del": "^3.0.0",
"envify": "^4.1.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-browserify": "^0.5.1",
"gulp-clean-css": "^4.0.0",
"gulp-concat": "^2.6.1",
"gulp-minify": "^3.1.0",
"gulp-rename": "^1.4.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-zip": "^4.2.0",
"handlebars": "^4.1.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"web-ext": "^2.9.3"
},
"dependencies": {
"@babel/polyfill": "^7.2.5"
}
}