-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.27 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
{
"name": "rune.save.js",
"version": "0.4.1",
"description": "Rune.js plugin for saving a Rune SVG Sketch as svg, png, jpg and WebP. It works also as a standalone script to save SVG elements as images",
"main": "src/save.js",
"unpkg": "dist/rune.save.js",
"scripts": {
"prebuild": "rm -rf dist",
"build": "npm run build:plugin && npm run build:script && npm run minify:plugin && npm run minify:script",
"build:plugin": "rune build",
"build:script": "webpack --entry ./src/svg.save.js --output-filename ./dist/svg.save.js",
"minify:plugin": "uglifyjs dist/rune.save.js --output dist/rune.save.js",
"minify:script": "uglifyjs dist/svg.save.js --output dist/svg.save.js",
"version": "npm run build && git add -A dist/",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alterebro/rune.save.js.git"
},
"keywords": [
"rune.js",
"svg",
"png",
"jpg",
"webp",
"save",
"plugin"
],
"author": "Jorge Moreno, moro.es (@alterebro)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alterebro/rune.save.js/issues"
},
"homepage": "https://github.com/alterebro/rune.save.js#readme",
"dependencies": {
"rune.js": "^1.1.7"
}
}