-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 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
{
"name": "vue-mount",
"version": "0.6.3",
"description": "A tool for dynamic mounting Vue components.",
"main": "lib/index.js",
"module": "src/index.js",
"scripts": {
"serve": "vue-cli-service serve",
"build:lib": "cross-env BABEL_ENV=umd babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:dist": "cross-env BABEL_ENV=umd webpack --config webpack.config.js",
"test:unit": "vue-cli-service test:unit"
},
"keywords": [
"vue",
"component",
"mount",
"dynamic"
],
"author": "calvin_von",
"repository": {
"type": "git",
"url": "git+https://github.com/CalvinVon/vue-mount.git"
},
"bugs": {
"url": "https://github.com/CalvinVon/vue-mount/issues"
},
"homepage": "https://github.com/CalvinVon/vue-mount#readme",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@vue/cli-plugin-babel": "^3.7.0",
"@vue/cli-plugin-unit-mocha": "^3.7.0",
"@vue/cli-service": "^3.7.0",
"@vue/test-utils": "^1.0.0-beta.29",
"ant-design-vue": "^1.4.8",
"babel-plugin-add-module-exports": "^1.0.2",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"expect": "^24.8.0",
"jsdom": "^15.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^6.1.4",
"uglifyjs-webpack-plugin": "^2.1.3",
"vue": "^2.6.10",
"vue-router": "^3.1.3",
"vue-template-compiler": "^2.5.21",
"vuex": "^3.1.2",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
}
}