-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
34 lines (34 loc) · 966 Bytes
/
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
{
"name": "svgo-compressor",
"version": "2.1.2",
"license": "MIT",
"description": "A Plugin that compresses SVG assets using SVGO, right when you export them. This Plugin *requires* Sketch 3.8.",
"skpm": {
"name": "SVGO Compressor",
"main": "SVGO Compressor.sketchplugin",
"manifest": "src/manifest.json",
"assets": [
"assets/**/*"
]
},
"main": "src/plugin.js",
"scripts": {
"build": "skpm-build",
"watch": "skpm-build --watch",
"start": "skpm-build --watch --run",
"postinstall": "npm run build && skpm-link",
"test": "echo \"Error: no test specified\" && exit 1",
"publish": "skpm publish --appcast=.appcast.xml"
},
"author": "Sketch",
"devDependencies": {
"@skpm/builder": "0.8.0",
"serialize-javascript": "6.0.0"
},
"repository": "https://github.com/sketch-hq/svgo-compressor",
"dependencies": {
"@skpm/dialog": "0.4.2",
"@skpm/fs": "0.2.6",
"svgo": "2.8.0"
}
}