-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
37 lines (37 loc) · 949 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
{
"name": "rollup-plugin-vue-inline-svg",
"version": "1.1.2",
"description": "convert svg files to optimised vue components",
"main": "dist/rollup-plugin-vue-inline-svg.js",
"module": "dist/rollup-plugin-vue-inline-svg.es.js",
"scripts": {
"build": "rollup -c",
"pretest": "npm run build",
"test": "mocha test/*.js --requires buble/register",
"prepublish": "npm test"
},
"keywords": [
"rollup",
"vue",
"svg",
"plugin"
],
"author": "Benjamin Forster",
"license": "ISC",
"dependencies": {
"@rollup/pluginutils": "^3.0.9",
"svgo": "^1.3.2",
"vue-template-compiler": "^2.6.11",
"vue-template-es2015-compiler": "^1.9.1"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-node-resolve": "^7.1.3",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"octicons": "^8.5.0",
"rollup": "^2.6.1",
"sinon": "^9.0.2",
"standard": "^14.3.3"
}
}