AdminLTE/package.json

77 lines
2.6 KiB
JSON
Raw Normal View History

2015-02-01 22:25:09 +01:00
{
2015-04-16 01:07:24 +02:00
"name": "admin-lte",
2015-11-11 20:29:54 +01:00
"description": "Responsive open source admin dashboard and control panel.",
"version": "3.0.0-alpha",
"license": "MIT",
2018-03-17 18:07:55 +01:00
"author": "Abdullah Almsaeed <abdullah@almsaeedstudio.com>",
2018-02-04 00:45:19 +01:00
"scripts": {
2018-03-17 18:07:55 +01:00
"css": "npm-run-all --sequential css-compile css-minify",
"css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 build/scss/AdminLTE.scss dist/css/adminlte.css",
"css-minify": "cleancss --level 1 --output dist/css/adminlte.min.css dist/css/adminlte.css",
"compile": "npm-run-all --parallel js css",
"dev": "npm-run-all --parallel watch sync",
"js": "npm-run-all --sequential js-compile js-minify",
"js-compile": "rollup -c --sourcemap",
"js-minify": "uglifyjs --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/js/adminlte.js.map,includeSources,url=adminlte.min.js.map\" --output dist/js/adminlte.min.js dist/js/adminlte.js",
"production": "npm-run-all --parallel compile && node build/npm/Publish.js -v",
"sync": "browser-sync start --server --files *.html pages/ dist/",
"watch": "npm-run-all --parallel watch-css watch-js",
"watch-css": "nodemon --watch build/scss -e scss -x \"npm run css\"",
"watch-js": "nodemon --watch build/js -e js -x \"npm run js\""
2018-02-04 00:45:19 +01:00
},
2015-11-11 20:29:54 +01:00
"keywords": [
"css",
"sass",
"responsive",
"admin",
"template",
"theme",
"framework",
"control-panel",
"dashboard"
],
2018-02-04 00:45:19 +01:00
"homepage": "https://adminlte.io",
2018-03-17 18:07:55 +01:00
"style": "dist/css/adminlte.css",
2015-11-11 20:29:54 +01:00
"sass": "build/scss/AdminLTE.scss",
2015-04-16 01:07:24 +02:00
"repository": {
"type": "git",
"url": "git://github.com/almasaeed2010/AdminLTE.git"
},
2015-11-11 20:29:54 +01:00
"bugs": {
"url": "https://github.com/almasaeed2010/AdminLTE/issues"
},
2018-02-04 00:45:19 +01:00
"dependencies": {
2018-03-17 18:07:55 +01:00
"bootstrap": "^4.0.0",
"chart.js": "^2.7.1",
"font-awesome": "^4.7.0",
"jquery": "^3.3.1",
"jquery-ui": "^1.12.1",
"popper.js": "^1.13.0"
2018-02-04 00:45:19 +01:00
},
"peerDependencies": {
"font-awesome": "^4.7.0"
},
2015-03-03 00:41:47 +01:00
"devDependencies": {
2018-03-17 18:07:55 +01:00
"babel-cli": "^6.26.0",
2018-02-04 00:45:19 +01:00
"babel-core": "^6.26.0",
2018-03-17 18:07:55 +01:00
"babel-eslint": "^8.2.2",
"babel-plugin-external-helpers": "^6.22.0",
2018-02-04 00:45:19 +01:00
"babel-preset-env": "^1.6.1",
2018-03-17 18:07:55 +01:00
"browser-sync": "^2.23.6",
"clean-css-cli": "^4.1.10",
"copy-dir": "^0.3.0",
"css-loader": "^0.28.9",
"eslint": "^4.18.1",
"eslint-plugin-compat": "^2.2.0",
2018-02-04 00:45:19 +01:00
"extract-text-webpack-plugin": "^3.0.2",
"node-sass": "^4.7.2",
2018-03-17 18:07:55 +01:00
"nodemon": "^1.15.1",
"npm-run-all": "^4.1.2",
2018-02-04 00:45:19 +01:00
"path": "^0.12.7",
2018-03-17 18:07:55 +01:00
"rollup": "^0.55.5",
"rollup-plugin-babel": "^3.0.3",
"style-loader": "^0.19.1",
"uglify-js": "^3.3.11"
2015-02-01 22:25:09 +01:00
}
2015-07-12 15:46:20 +02:00
}