-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 975 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
{
"name": "homeran-loading",
"version": "0.0.5",
"description": "",
"author": {
"name": "Ran Tayar"
},
"main": "dist/homeran-loading.umd.js",
"module": "dist/homeran-loading.esm.js",
"unpkg": "dist/homeran-loading.min.js",
"scripts": {
"build": "npm run build:browser && npm run build:es && npm run build:umd",
"build:browser": "rollup --config rollup.config.js --format iife --file dist/homeran-loading.min.js",
"build:es": "rollup --config rollup.config.js --format es --file dist/homeran-loading.esm.js",
"build:umd": "rollup --config rollup.config.js --format umd --file dist/homeran-loading.umd.js",
"send": "npm run build && npm publish"
},
"dependencies": {
"readline-sync": "^1.4.10"
},
"devDependencies": {
"rollup": "^2.45.2",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-uglify-es": "0.0.1",
"rollup-plugin-vue": "^5.1.9",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12"
}
}