-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 973 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
30
31
{
"name": "select-to-checkbox",
"version": "1.1.0",
"description": "Convert select element to checkboxes or radio buttons jQuery plugin.",
"scripts": {
"clean": "rimraf dist && rimraf coverage",
"build": "npm run compile:js && npm run copy:html && npm run bundle && npm run minify",
"cleanbuild": "npm run clean && npm run build",
"compile:js": "tsc",
"copy:html": "cpx 'src/**.{html,css}' dist",
"bundle": "rollup -c",
"minify": "uglifyjs dist/select-to-checkbox-bundle.js --output dist/select-to-checkbox-bundle.min.js"
},
"author": {
"name": "Andrew Wagner"
},
"license": "LGPLv2.1",
"dependencies": {
"@babel/core": "^7.12.10",
"@types/jquery": "^3.5.4",
"cpx": "^1.5.0",
"jquery": "~3.5.1",
"node-sass": "^5.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.38.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"uglify": "^0.1.5",
"uglifyjs": "^2.4.11"
}
}