-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
38 lines (38 loc) · 1.15 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
{
"name": "bootstrap-checkbox",
"version": "2.0.0",
"description": "A checkbox component based on Bootstrap framework",
"keywords": [
"bootstrap",
"checkbox",
"jquery-plugin",
"switch"
],
"homepage": "https://vsn4ik.github.io/bootstrap-checkbox/",
"author": {
"name": "Vasilii A.",
"url": "https://github.com/vsn4ik"
},
"repository": "vsn4ik/bootstrap-checkbox",
"license": "MIT",
"files": [
"dist",
"js/**/*.js"
],
"main": "dist/js/bootstrap-checkbox.js",
"type": "module",
"scripts": {
"test": "npm run js; npm run js-compile-i18n",
"js": "npm run js-compile; npm run js-minify",
"js-compile": "babel --out-dir dist/js/ js/*.js",
"js-compile-i18n": "babel --out-dir dist/js/i18n/ js/i18n/*.js",
"js-minify": "terser --compress --output dist/js/$npm_package_name.min.js dist/js/$npm_package_name.js",
"release-zip": "cd dist/ && zip -r9 $npm_package_name-$npm_package_version-dist.zip * && mv $npm_package_name-$npm_package_version-dist.zip .."
},
"devDependencies": {
"@babel/cli": "7.21.0",
"@babel/core": "7.21.0",
"@babel/preset-env": "7.20.2",
"terser": "5.16.5"
}
}