bulma/package.json

63 lines
2.2 KiB
JSON
Raw Permalink Normal View History

{
"name": "bulma",
2024-07-25 14:58:39 +00:00
"version": "1.0.2",
2017-10-16 12:23:57 +00:00
"homepage": "https://bulma.io",
2018-10-12 10:23:32 +00:00
"author": {
"name": "Jeremy Thomas",
"email": "bbxdesign@gmail.com",
"url": "https://jgthms.com"
},
2016-01-27 22:29:21 +00:00
"description": "Modern CSS framework based on Flexbox",
2024-03-21 16:11:54 +00:00
"main": "bulma.scss",
"unpkg": "css/bulma.css",
2023-02-16 00:56:47 +00:00
"style": "css/bulma.min.css",
"repository": {
"type": "git",
"url": "git+https://github.com/jgthms/bulma.git"
},
"license": "MIT",
"keywords": [
"css",
"sass",
2024-03-21 16:11:54 +00:00
"scss",
"flexbox",
2024-03-21 16:11:54 +00:00
"grid",
"responsive",
"framework"
],
"bugs": {
"url": "https://github.com/jgthms/bulma/issues"
2016-01-30 10:30:06 +00:00
},
"devDependencies": {
2024-07-25 14:29:34 +00:00
"cssnano": "^7.0.4",
2024-03-21 16:11:54 +00:00
"postcss-cli": "^11.0.0",
2024-07-25 14:29:34 +00:00
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"sass": "^1.77.8"
2016-01-30 10:30:06 +00:00
},
"scripts": {
2024-03-21 16:11:54 +00:00
"build-bulma": "sass --style=expanded --source-map bulma.scss css/bulma.css",
"minify-bulma": "postcss css/bulma.css --no-map --use cssnano --output css/bulma.min.css",
2024-04-29 11:35:29 +00:00
"version-no-dark-mode": "sass --style=expanded --source-map versions/bulma-no-dark-mode.scss css/versions/bulma-no-dark-mode.css",
"version-no-helpers": "sass --style=expanded --source-map versions/bulma-no-helpers.scss css/versions/bulma-no-helpers.css",
"version-no-helpers-prefixed": "sass --style=expanded --source-map versions/bulma-no-helpers-prefixed.scss css/versions/bulma-no-helpers-prefixed.css",
2024-03-21 16:11:54 +00:00
"version-prefixed": "sass --style=expanded --source-map versions/bulma-prefixed.scss css/versions/bulma-prefixed.min.css",
"build-versions": "npm run version-no-dark-mode && npm run version-no-helpers && npm run version-no-helpers-prefixed && npm run version-prefixed",
2024-04-29 11:35:29 +00:00
"minify-versions": "postcss css/versions/*.css --dir css/versions --ext min.css --no-map --use cssnano",
2024-03-21 16:11:54 +00:00
"build-all": "npm run build-bulma && npm run build-versions",
"minify-all": "npm run minify-bulma && npm run minify-versions",
2024-04-29 12:16:06 +00:00
"clean": "rimraf css",
"deploy": "npm run clean && npm run build-all && npm run minify-all",
"test": "sass --style=expanded --source-map --watch test.scss test.css",
2024-03-21 16:11:54 +00:00
"start": "npm run build-bulma -- --watch"
},
"files": [
"css",
"sass",
2024-03-21 17:47:18 +00:00
"versions",
2024-03-21 16:11:54 +00:00
"bulma.scss",
2016-09-24 16:18:56 +00:00
"LICENSE",
"README.md"
2021-06-18 17:37:01 +00:00
]
}