2017-07-01 17:30:39 +00:00
|
|
|
{
|
|
|
|
"name": "bulma-docs",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"main": "index.html",
|
2018-01-10 17:53:22 +00:00
|
|
|
"author": "Jeremy Thomas <bbxdesign@gmail.com> (https://jgthms.com)",
|
2017-07-01 17:30:39 +00:00
|
|
|
"license": "MIT",
|
|
|
|
"devDependencies": {
|
2022-05-07 11:10:40 +00:00
|
|
|
"autoprefixer": "^10.4.7",
|
2018-04-13 14:57:10 +00:00
|
|
|
"babel-cli": "^6.26.0",
|
2019-02-08 12:15:52 +00:00
|
|
|
"babel-preset-env": "^1.7.0",
|
2017-07-01 17:30:39 +00:00
|
|
|
"babel-preset-es2015-ie": "^6.7.0",
|
2022-05-07 11:10:40 +00:00
|
|
|
"clean-css-cli": "^5.6.0",
|
2022-05-08 12:55:16 +00:00
|
|
|
"cypress": "^9.6.0",
|
2022-05-07 11:10:40 +00:00
|
|
|
"metalsmith": "^2.4.2",
|
2018-06-16 00:58:49 +00:00
|
|
|
"metalsmith-filter": "^1.0.2",
|
2022-01-04 12:01:43 +00:00
|
|
|
"node-sass": "^7.0.1",
|
|
|
|
"postcss-cli": "^9.1.0"
|
2017-07-01 17:30:39 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2022-05-08 12:55:16 +00:00
|
|
|
"bulma-sass": "node-sass --output-style expanded bulma.scss css/bulma.css",
|
|
|
|
"bulma-watch": "npm run bulma-sass -- --watch",
|
2018-04-13 14:57:10 +00:00
|
|
|
"css-build": "npm run css-sass && npm run css-autoprefix && npm run css-cleancss",
|
|
|
|
"css-autoprefix": "postcss --use autoprefixer --map false --output css/bulma-docs.css css/bulma-docs.css",
|
|
|
|
"css-cleancss": "cleancss -o css/bulma-docs.min.css css/bulma-docs.css",
|
2021-01-27 23:30:42 +00:00
|
|
|
"css-sass": "node-sass --output-style expanded bulma-docs.scss css/bulma-docs.css",
|
2018-04-13 14:57:10 +00:00
|
|
|
"css-watch": "npm run css-sass -- --watch",
|
2022-05-08 12:55:16 +00:00
|
|
|
"cypress-open": "./node_modules/.bin/cypress open",
|
|
|
|
"cypress-run": "./node_modules/.bin/cypress run",
|
2018-04-13 14:57:10 +00:00
|
|
|
"deploy": "npm run css-build && npm run js-build",
|
|
|
|
"js-build": "babel _javascript --out-dir lib",
|
|
|
|
"js-watch": "npm run js-build -- --watch",
|
|
|
|
"start": "npm run css-watch | npm run js-watch",
|
|
|
|
"start-test": "npm run test-scss -- --watch",
|
2022-02-06 15:57:04 +00:00
|
|
|
"test-scss": "node-sass --output-style expanded bulma-test.scss css/bulma-test.css",
|
|
|
|
"test-watch": "npm run test-scss -- --watch"
|
2017-07-01 17:30:39 +00:00
|
|
|
}
|
|
|
|
}
|