-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 3.29 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "FotoFluent",
"description": "A Chrome extension that helps you learn a new language",
"version": "1.0.2",
"license": "MIT",
"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",
"lint": "eslint --ext .html,.js,.vue --ignore-path .gitignore ."
},
"author": {
"name": "rkillackey",
"email": "[email protected]"
},
"dependencies": {
"axios": "^0.16.2"
},
"devDependencies": {
"babel-cli": "6.x.x",
"babel-core": "^6.22.1",
"babel-eslint": "^7.2.1",
"babel-helper-vue-jsx-merge-props": "^2.0.2",
"babel-loader": "^7.0.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-vue-jsx": "^3.4.3",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-stage-0": "6.x.x",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.0.0",
"chrome-promise": "^2.0.2",
"chromereload": "0.x.x",
"css-loader": "^0.28.3",
"debounce": "1.x.x",
"deepmerge": "^1.3.2",
"del": "2.x.x",
"eslint": "3.x.x",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "1.x.x",
"eslint-plugin-html": "^2.0.3",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^2.0.1",
"gulp": "3.x.x",
"gulp-bump": "2.x.x",
"gulp-cache": "0.x.x",
"gulp-clean-css": "^3.4.0",
"gulp-filter": "^5.0.0",
"gulp-git": "^2.3.0",
"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": "^3.1.0",
"gulp-sequence": "0.x.x",
"gulp-sourcemaps": "2.6.0",
"gulp-tag-version": "1.x.x",
"gulp-util": "3.x.x",
"gulp-vueify": "0.0.3",
"gulp-zip": "^4.0.0",
"json-loader": "^0.5.4",
"milligram": "^1.3.0",
"normalize-scss": "^7.0.0",
"prettier": "^1.3.1",
"require-dir": "0.x.x",
"sass-loader": "^6.0.5",
"v-tooltip": "^2.0.0-beta.8",
"vinyl-named": "1.x.x",
"vue": "^2.3.3",
"vue-async-computed": "^3.1.3",
"vue-head": "^2.0.10",
"vue-loader": "^12.2.0",
"vue-moment": "^2.0.2",
"vue-multiselect": "2.0.0-beta.15",
"vue-template-compiler": "^2.3.3",
"vue-truncate-filter": "^1.1.6",
"vue2-filters": "^0.1.9",
"vueify-insert-css": "^1.0.0",
"vuex": "^2.2.1",
"webpack": "^2.6.1",
"webpack-bundle-analyzer": "^2.8.2",
"webpack-stream": "3.x.x",
"yargs": "^8.0.1"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}