-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.28 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
{
"name": "rollup-plugin-svg-sprite",
"description": "Create external svg sprite from your bundle using Rollup",
"version": "1.0.0",
"author": "Vlad Shcherbin <vlad.shcherbin@gmail.com>",
"repository": "vladshcherbin/rollup-plugin-svg-sprite",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"scripts": {
"clean": "rimraf coverage dist",
"build": "rollup -c",
"lint": "eslint src tests",
"postpublish": "yarn clean",
"prepublishOnly": "yarn lint && yarn test && yarn clean && yarn build",
"test": "jest"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"fs-extra": "^9.0.1",
"svgo": "^1.3.2"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"babel-jest": "^26.3.0",
"codecov": "^3.7.2",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.4.0",
"rimraf": "^3.0.2",
"rollup": "^2.26.4",
"rollup-plugin-auto-external": "^2.0.0"
},
"files": [
"dist",
"readme.md"
],
"keywords": [
"rollup",
"rollup-plugin",
"svg",
"sprite",
"svg-sprite",
"svgo",
"create",
"generate",
"extract",
"minify"
],
"engines": {
"node": ">=10"
},
"license": "MIT"
}