-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·62 lines (62 loc) · 1.88 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
{
"name": "vue-chrome-extension-example",
"private": true,
"version": "0.0.0",
"description": "chrome extesion with vue",
"scripts": {
"start": "npm run dev:chrome",
"build": "npm run build:chrome",
"build:chrome": "gulp --production --vendor=chrome && gulp pack --vendor=chrome",
"build:firefox": "gulp --production --vendor=firefox && gulp pack --vendor=firefox",
"build:opera": "gulp --production --vendor=opera && gulp pack --vendor=opera",
"dev": "npm run dev:chrome",
"dev:chrome": "gulp --watch --vendor=chrome",
"dev:firefox": "gulp --watch --vendor=firefox",
"dev:opera": "gulp --watch --vendor=opera"
},
"devDependencies": {
"babel-cli": "6.x.x",
"babel-core": "^6.22.1",
"babel-eslint": "6.x.x",
"babel-loader": "6.x.x",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "6.x.x",
"bulma": "^0.3.1",
"chai": "3.x.x",
"chromereload": "0.x.x",
"css-loader": "^0.26.2",
"debounce": "1.x.x",
"del": "2.x.x",
"eslint": "3.x.x",
"eslint-loader": "1.x.x",
"gulp": "3.x.x",
"gulp-bump": "2.x.x",
"gulp-cache": "0.x.x",
"gulp-clean-css": "2.x.x",
"gulp-filter": "4.x.x",
"gulp-git": "1.x.x",
"gulp-if": "2.x.x",
"gulp-imagemin": "3.x.x",
"gulp-json-transform": "0.x.x",
"gulp-less": "3.x.x",
"gulp-livereload": "3.x.x",
"gulp-plumber": "1.x.x",
"gulp-sass": "2.x.x",
"gulp-sequence": "0.x.x",
"gulp-sourcemaps": "1.x.x",
"gulp-tag-version": "1.x.x",
"gulp-util": "3.x.x",
"gulp-vueify": "0.0.3",
"gulp-zip": "3.x.x",
"require-dir": "0.x.x",
"vinyl-named": "1.x.x",
"vue": "^2.2.1",
"vue-loader": "^11.1.4",
"vue-template-compiler": "^2.2.1",
"vueify-insert-css": "^1.0.0",
"webpack": "^2.2.1",
"webpack-stream": "3.x.x",
"yargs": "5.x.x"
}
}