-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.42 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
{
"name": "purgesvg",
"version": "1.1.0",
"license": "MIT",
"description": "Remove unused svg symbols and optionaly merge svg files",
"homepage": "https://github.com/Media24si/purge-svg",
"contributors": [
"Bostjan Oblak <bostjan@muha.cc> (https://bostjan.cloud/)",
"Jernej Pogačar"
],
"bugs": {
"url": "https://github.com/Media24si/purge-svg/issues"
},
"main": "./src/index.js",
"bin": {
"purgesvg": "bin/purgesvg"
},
"directories": {
"test": "__tests__"
},
"keywords": [
"optimization",
"remove",
"unused",
"svg",
"purge"
],
"scripts": {
"test": "jest __tests__/.+.test.js",
"test-report": "npm run test -- --collectCoverage",
"lint": "eslint -c .eslintrc src/ __tests__"
},
"repository": {
"type": "git",
"url": "https://github.com/Media24si/purge-svg.git"
},
"dependencies": {
"glob": "^7.1.6",
"xml-js": "^1.6.11",
"yargs": "^16.2.0"
},
"devDependencies": {
"app-root-path": "^3.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.16.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^26.6.3"
}
}