forked from MMF-FE/svgicon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.83 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
{
"name": "vue-svgicon",
"version": "1.1.5",
"description": "A tool to create svg icon components. (vue 2.x)",
"main": "./dist/index.js",
"bin": {
"vsvg": "bin/svg.js"
},
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"svg": "node ./bin/svg.js -s ./demo/svg -t ./demo/src/icons",
"test-watch": "mocha-webpack --watch",
"test": "mocha-webpack",
"cover": "cross-env NODE_ENV=coverage nyc --reporter=lcov --reporter=text npm run test"
},
"nyc": {
"include": [
"component/**/*.js",
"component/**/*.vue"
],
"sourceMap": false,
"instrument": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/MMF-FE/vue-svgicon.git"
},
"keywords": [
"vue",
"vue2.0",
"svg",
"icon",
"svgicon"
],
"author": "allenice <[email protected]> (http://blog.allenice233.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/MMF-FE/vue-svgicon/issues"
},
"homepage": "https://github.com/MMF-FE/vue-svgicon#readme",
"dependencies": {
"fs-plus": "^2.9.3",
"glob": "^7.1.1",
"svgo": "^0.7.2",
"yargs": "^6.6.0"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"coveralls": "^2.11.16",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"file-loader": "^0.9.0",
"istanbul-instrumenter-loader": "^2.0.0",
"jsdom": "^9.11.0",
"mocha": "^3.2.0",
"mocha-webpack": "next",
"nyc": "^10.1.2",
"vue": "^2.1.0",
"vue-loader": "^10.0.0",
"vue-template-compiler": "^2.1.0",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0",
"webpack-merge": "^3.0.0",
"webpack-node-externals": "^1.5.4"
}
}