-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.27 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
39
40
41
42
{
"name": "sidebar-skeleton-compostrap",
"version": "2.0.8",
"description": "Simple and fast sidebar skeleton on Bootstrap",
"dependencies": {
"bootstrap": "^5.3.1",
"@popperjs/core": "^2.11.8"
},
"devDependencies": {
"clean-css-cli": "^5.6.2",
"sass": "^1.65.1",
"nodemon": "^3.0.1",
"serve": "^14.2.0",
"uglify-js-es6": "^2.8.9"
},
"scripts": {
"build": "npm run scss && npm run css-minify && npm run uglify",
"scss": "sass -I node_modules scss/sidebar.scss dist/css/sidebar.css",
"css-minify": "cleancss -O1 --output dist/css/sidebar.min.css dist/css/sidebar.css",
"uglify": "uglifyjs -o dist/js/sidebar.min.js dist/js/sidebar.js",
"watch": "nodemon -e scss -x \"npm run scss\"",
"server": "serve --listen 3000"
},
"author": "Zdeněk Papučík <[email protected]>",
"license": "MIT",
"keywords": [
"sidebar",
"menu",
"bootstrap"
],
"style": "dist/css/sidebar.css",
"sass": "scss/sidebar.scss",
"main": "dist/js/sidebar.js",
"repository": {
"type": "git",
"url": "git+https://github.com/compostrap/sidebar-skeleton.git"
},
"bugs": {
"url": "https://github.com/compostrap/sidebar-skeleton/issues"
},
"homepage": "https://github.com/compostrap/sidebar-skeleton#readme"
}