-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
44 lines (44 loc) · 1.39 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
43
44
{
"name": "sidebar-menu-compostrap",
"version": "2.0.12",
"description": "Simple and fast multi-level sidebar menu on Bootstrap",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.2",
"nanobar": "^0.4.2",
"perfect-scrollbar": "^1.5.5",
"sidebar-skeleton-compostrap": "^2.0.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.menu.scss dist/css/sidebar.menu.css",
"css-minify": "cleancss -O1 -o dist/css/sidebar.menu.min.css dist/css/sidebar.menu.css",
"uglify": "uglifyjs -o dist/js/sidebar.menu.min.js dist/js/sidebar.menu.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.menu.css",
"sass": "scss/sidebar.menu.scss",
"main": "dist/js/sidebar.menu.js",
"repository": {
"type": "git",
"url": "git+https://github.com/compostrap/sidebar-menu.git"
},
"bugs": {
"url": "https://github.com/compostrap/sidebar-menu/issues"
},
"homepage": "https://github.com/compostrap/sidebar-menu#readme"
}