forked from svgstore/svgstore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.28 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.28 KB
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
{
"name": "@tomasvn/svgstore",
"version": "3.1.3",
"description": "Combines mulitple svg files into one.",
"scripts": {
"lint": "npx eslint --fix \"{src,test}/**/*.js\" && npx prettier --write \"{src,test}/**/*.js\"",
"test": "node test/svgstore.js",
"cover": "npx c8 npm test"
},
"keywords": [
"concat",
"join",
"merge",
"pack",
"path",
"sprite",
"svg",
"svgs",
"svgstore",
"symbol",
"symbols"
],
"author": "Shannon Moeller <me@shannonmoeller.com> (http://shannonmoeller.com)",
"maintainers": [
{
"name": "Shannon Moeller",
"email": "me@shannonmoeller.com",
"url": "https://github.com/shannonmoeller"
},
{
"name": "Brian Sipple",
"email": "bsipple57@gmail.com",
"url": "https://github.com/BrianSipple"
}
],
"homepage": "https://github.com/@tomasvn/svgstore#readme",
"repository": "tomasvn/svgstore",
"license": "MIT",
"main": "src/svgstore.js",
"dependencies": {
"cheerio": "v1.0.0-rc.10",
"@resvg/resvg-js": "^2.1.0"
},
"engines": {
"node": ">= 12"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 8
}
},
"prettier": {
"singleQuote": true
}
}