forked from shrpne/vue-inline-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
{
"name": "vue-inline-svg",
"version": "1.3.1",
"description": "Replace SVG images with inline SVG element",
"main": "dist/vue-inline-svg.js",
"module": "src/index.js",
"browser": "dist/vue-inline-svg.js",
"unpkg": "dist/vue-inline-svg.min.js",
"files": [
"/src/",
"/dist/"
],
"scripts": {
"build": "rollup -c rollup.conf.js",
"test": "npm run lint",
"lint": "eslint src/*.js",
"lint:fix": "eslint src/*.js --fix",
"prepublishOnly": "npm run test && npm run build",
"precommit": "echo 'Pre-commit checks...' && npm run lint"
},
"pre-commit": [
"precommit"
],
"keywords": [
"vue",
"svg",
"inline",
"inject",
"image",
"replace"
],
"author": "shrpne <[email protected]>",
"license": "MIT",
"repository": "https://github.com/shrpne/vue-inline-svg",
"bugs": {
"url": "https://github.com/shrpne/vue-inline-svg/issues"
},
"homepage": "https://github.com/shrpne/vue-inline-svg",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"eslint": "^6",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"pre-commit": "^1.2.2",
"rollup": "^2.8.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.0"
}
}