-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
34 lines (34 loc) · 1.08 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
{
"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": "dist/svg-loader.min.js",
"version": "1.7.1",
"scripts": {
"build:js": "cross-env NODE_ENV=production webpack build",
"build:cp": "npx cpr ./dist/svg-loader.min.js ./svg-loader.min.js --overwrite",
"build": "npm-run-all build:*",
"dev:watch": "webpack watch --mode development",
"dev:http": "cd test && http-server",
"dev": "npm-run-all --parallel dev:*",
"prepare": "husky install"
},
"devDependencies": {
"cpr":"^3.0.1",
"cross-env": "^7.0.3",
"http-server": "^14.0.0",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"idb-keyval": "^6.2.0"
}
}