-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.23 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
56
57
58
59
60
61
{
"name": "svgo",
"version": "5.0.0",
"private": true,
"description": "Minify SVG with SVGO.",
"scripts": {
"test": "apm test",
"pretest": "eslint ."
},
"activationCommands": {
"atom-text-editor:not([mini])": [
"svgo:minify",
"svgo:prettify"
]
},
"configSchema": {
"indent": {
"title": "Indent",
"description": "Indent size to apply on prettify",
"type": "number",
"default": 2
},
"disable": {
"title": "Disable",
"description": "Plugin names (separated with space delimiter) to disable",
"type": "string",
"default": ""
}
},
"repository": {
"type": "git",
"url": "git@github.com:1000ch/atom-svgo.git"
},
"keywords": [
"svg",
"svgo",
"optimize",
"minify",
"prettify"
],
"author": {
"name": "Shogo Sensui",
"email": "shogosensui@gmail.com",
"url": "https://github.com/1000ch"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/1000ch/atom-svgo/issues"
},
"homepage": "https://github.com/1000ch/atom-svgo#readme",
"engines": {
"atom": ">=1.0.0"
},
"dependencies": {
"execa": "^5.1.1",
"svgo": "^2.3.0"
},
"devDependencies": {
"eslint": "^7.30.0"
}
}