forked from thierrymichel/vue-svg-sprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1008 Bytes
/
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
{
"name": "vue-svg-sprite",
"version": "0.0.2",
"description": "Vue.js directive to simply use SVG sprite",
"main": "./index.js",
"scripts": {
"build": "babel src --out-dir lib",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "jscs src && eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thierrymichel/vue-svg-sprite.git"
},
"keywords": [
"vue",
"directive",
"svg",
"use",
"sprite"
],
"author": "thierrymichel <[email protected]> (http://thierrymichel.net)",
"license": "MIT",
"bugs": {
"url": "https://github.com/thierrymichel/vue-svg-sprite/issues"
},
"homepage": "https://github.com/thierrymichel/vue-svg-sprite#readme",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.13.0",
"jscs": "^3.0.4"
},
"dependencies": {}
}