forked from shubhamjain/svg-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 849 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
{
"name": "external-svg-loader",
"license": "MIT",
"description": "Plug 'n play external SVG loader",
"homepage": "https://github.com/shubhamjain/svg-loader",
"author": "Shubham Jain <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/shubhamjain/svg-loader.git"
},
"main": "svg-loader.js",
"version": "1.3.3",
"scripts": {
"minify": "terser svg-loader.min.js -m --toplevel -o svg-loader.min.js",
"build": "npm run compile && npm run minify",
"compile": "browserify svg-loader.js -o svg-loader.min.js",
"watch": "watch 'npm run compile' . -d -u"
},
"devDependencies": {
"browserify": "^17.0.0",
"terser": "^5.5.0",
"watch": "^1.0.2"
},
"dependencies": {
"idb-keyval": "^3.2.0"
}
}