-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.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
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
{
"name": "better-vue",
"version": "0.0.14",
"description": "better way to use vue framework to create app, web, and wechat miniprogram ",
"main": "dist/src/main.js",
"files": [
"src/"
],
"bin": {
"better": "dist/bin/main.js"
},
"scripts": {
"test": "better test",
"build": "babel src -d dist/src && babel bin -d dist/bin && cp configs/* dist/configs"
},
"repository": {
"type": "git",
"url": "https://github.com/ZoranWong/better-vue.git"
},
"babel": {
"presets": [
"@babel/env"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-transform-object-super",
"@babel/plugin-syntax-dynamic-import",
[
"@babel/plugin-transform-classes",
{
"loose": true
}
],
[
"@babel/plugin-transform-runtime",
{
"absoluteRuntime": false,
"corejs": false,
"helpers": true,
"regenerator": true,
"useESModules": false,
"version": "7.0.0-beta.0"
}
]
]
},
"keywords": [
"vue",
"wechat",
"miniprogram",
"web"
],
"author": "Zoran Wong",
"license": "MIT",
"dependencies": {
"underscore": "^1.9.2",
"uni-app-axios": "^2.3.3"
},
"devDependencies": {
"child_process": "^1.0.2",
"fs": "0.0.1-security",
"eslint": "^6.8.0",
"@babel/cli": "^7.8.0",
"@babel/core": "^7.8.0",
"@babel/helpers": "^7.8.0",
"@babel/node": "^7.8.0",
"@babel/plugin-proposal-class-properties": "^7.8.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.0",
"@babel/plugin-transform-object-super": "^7.8.0",
"@babel/plugin-transform-runtime": "^7.8.0",
"@babel/polyfill": "^7.8.0",
"@babel/preset-env": "^7.8.2",
"axios": "^0.19.1",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"commander": "^4.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^3.0.3",
"esm": "^3.2.25",
"flyio": "^0.6.14",
"shelljs": "^0.8.3",
"string-replace-loader": "^2.2.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue": "^2.6.11",
"vue-axios": "^2.1.5",
"vuex": "^3.1.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"browser": {
"child_process": false,
"fs": false
}
}