-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.84 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
{
"name": "vuex-model-template",
"version": "0.0.2-alpha.11",
"description": "Generation of vuex module from object template",
"main": "src/index.js",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-es6-promise": "^1.1.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"es6-promise": "^4.1.1",
"eslint": "^4.9.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-promise": "^3.6.0",
"file-loader": "^1.1.5",
"lodash": "^4.17.4",
"lodash-webpack-plugin": "^0.11.4",
"vue": "^2.5.2",
"vuex": "^3.0.0",
"webpack": "^3.8.1",
"webpack-preprocessor": "^0.1.10"
},
"scripts": {
"build.dev": "eslint src && webpack --config webpack.dev.config.js --devtool source-map --display-reasons --progress --bail",
"build.example": "eslint example && webpack --config webpack.example.config.js --devtool source-map --display-reasons --progress --bail",
"build.instrumented": "eslint src && webpack --config webpack.instrumented.config.js --devtool source-map --display-reasons --progress --bail",
"build.prod": "eslint src && webpack --config webpack.prod.config.js --devtool source-map --display-reasons --bail",
"build": "npm run build.dev && npm run build.instrumented && npm run build.prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Marc-Andre-Rivet/vuex-model-template.git"
},
"keywords": [
"vue",
"vuex",
"template"
],
"author": "Marc-André Rivet",
"license": "MIT",
"bugs": {
"url": "https://github.com/Marc-Andre-Rivet/vuex-model-template/issues"
},
"homepage": "https://github.com/Marc-Andre-Rivet/vuex-model-template#readme"
}