-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "vue-icon-font",
"description": "IconFont plugin for Vuejs",
"version": "1.0.3",
"author": "ganl <austgl@qq.com>",
"main": "dist/vue-iconfont.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot --mode development",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ganl/vue-icon-font.git"
},
"keywords": [
"vue",
"icons",
"iconfont"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ganl/vue-icon-font/issues"
},
"homepage": "https://github.com/ganl/vue-icon-font#readme",
"dependencies": {
"vue": "^2.5.21"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"file-loader": "^3.0.1",
"uglifyjs-webpack-plugin": "^2.1.1",
"vue-loader": "^15.5.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.21",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
}
}