bulma/package.json

38 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "bulma",
2016-07-31 17:37:37 +00:00
"version": "0.1.2",
"homepage": "http://bulma.io",
"author": "jgthms <bbxdesign@gmail.com>",
2016-01-27 22:29:21 +00:00
"description": "Modern CSS framework based on Flexbox",
2016-01-27 21:18:25 +00:00
"main": "bulma.sass",
"repository": {
"type": "git",
"url": "git+https://github.com/jgthms/bulma.git"
},
"license": "MIT",
"keywords": [
"css",
"sass",
"flexbox",
"responsive",
"framework"
],
"bugs": {
"url": "https://github.com/jgthms/bulma/issues"
2016-01-30 10:30:06 +00:00
},
"devDependencies": {
2016-02-13 20:13:35 +00:00
"autoprefixer": "^6.3.3",
2016-02-08 23:18:26 +00:00
"captain-git-hook": "~1.0.5",
2016-02-13 22:31:08 +00:00
"node-sass": "^3.4.2",
"postcss-cli": "^2.5.1"
2016-01-30 10:30:06 +00:00
},
"scripts": {
2016-02-13 20:13:35 +00:00
"autoprefix": "postcss --use autoprefixer --output css/bulma.css css/bulma.css",
2016-06-29 23:12:04 +00:00
"build": "npm run clean && npm run build-sass && npm run autoprefix",
2016-01-30 10:30:06 +00:00
"build-sass": "node-sass --output-style expanded --source-map true --output css/ bulma.sass --outFile css/bulma.css",
"clean": "rm -rf css",
2016-03-15 12:13:31 +00:00
"pre-push": "npm run build && git add css && git commit --amend --no-edit",
2016-01-30 10:30:06 +00:00
"start": "npm run build-sass -- --watch"
}
}