forked from hsarchive/bootstrap-hardskilled-extend-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.34 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
{
"name": "bootstrap-extend-select",
"version": "1.2.2",
"description": "Extended Select for Bootstrap 4 (alternative bootstrap-select)",
"keywords": ["bootstrap", "select", "bootstrap-4", "jquery"],
"main": "src/select.js",
"scripts": {
"server": "serve .",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build-js && npm run build-js-minify && npm run build-css && npm run build-css-minify",
"build-js": "babel src/select.js --out-file js/select.js",
"build-js-minify": "babel-minify src/select.js --out-file js/select.min.js",
"build-css": "node-sass --include-path ./scss ./scss/select.scss ./css/select.css",
"build-css-minify": "node-sass --output-style compressed --include-path ./scss ./scss/select.scss ./css/select.min.css",
"watch": "nodemon -e scss -e src -x \"npm run build\""
},
"types": "./types/module.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ofertorio/bootstrap-extend-select.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ofertorio/bootstrap-extend-select/issues"
},
"homepage": "https://github.com/ofertorio/bootstrap-extend-select#readme",
"devDependencies": {
"babel-cli": "latest",
"babel-minify": "latest",
"node-sass": "latest",
"nodemon": "latest",
"serve": "latest"
}
}