milligram/package.json

103 lines
2.4 KiB
JSON
Raw Normal View History

2015-12-10 22:35:50 +00:00
{
2016-08-06 12:34:11 +00:00
"name": "milligram",
2017-01-26 10:01:40 +00:00
"version": "1.3.0",
2016-08-06 12:34:11 +00:00
"description": "A minimalist CSS framework.",
2018-02-16 05:01:21 +00:00
"homepage": "https://milligram.io",
2016-08-06 12:34:11 +00:00
"repository": "milligram/milligram",
"license": "MIT",
"author": "CJ Patoilo <cjpatoilo@gmail.com>",
"main": "dist/milligram.css",
"keywords": [
"bootstrap",
"css",
"css3",
"flexbox",
"front-end",
"framework",
"html",
"html5",
"kickstarter",
"less",
"responsive",
"mobile",
"mobile-first",
"postcss",
"responsive",
"sass",
"scss",
"stylus"
],
"ignore": [
2016-11-22 22:28:46 +00:00
".appveyor.yml",
2016-08-06 12:34:11 +00:00
".github",
".gitignore",
2020-05-15 04:18:35 +00:00
".gitpod.yml",
".prettierignore",
2016-10-08 15:46:11 +00:00
".sasslintrc",
2016-08-06 12:34:11 +00:00
".travis.yml",
"backstop.config.js",
2016-08-06 12:34:11 +00:00
"bower.json",
"changelog.md",
"composer.json",
"package.js",
"package.json",
"src",
"test"
],
"dependencies": {
2016-11-30 20:20:05 +00:00
"normalize.css": "~5.0.0"
2016-08-06 12:34:11 +00:00
},
"devDependencies": {
2019-07-09 13:23:31 +00:00
"autoprefixer": "^9.6.1",
"ava": "^2.2.0",
"backstopjs": "^3.8.9",
2019-07-09 13:23:31 +00:00
"banner-cli": "^0.14.0",
2016-12-13 05:19:30 +00:00
"browser-sync": "^2.18.5",
2020-05-15 04:18:35 +00:00
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
2019-07-09 13:23:31 +00:00
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"onchange": "^6.0.0",
"postcss-cli": "^6.1.3",
2020-05-15 04:18:35 +00:00
"prettier-standard": "^16.3.0",
"rimraf": "^2.5.4",
2018-05-09 12:40:14 +00:00
"sass-lint": "^1.12.1"
2016-08-06 12:34:11 +00:00
},
"engines": {
2020-05-15 04:10:58 +00:00
"node": "^10.20.1",
"npm": "^6.14.4"
2016-08-06 12:34:11 +00:00
},
"scripts": {
"start": "run-p build watch serve",
"build": "run-s clean sass autoprefixer banner",
"clean": "rimraf dist",
2016-08-06 12:34:11 +00:00
"sass": "node-sass --output-style expanded src/milligram.sass dist/milligram.css && node-sass --output-style compressed src/milligram.sass dist/milligram.min.css",
"autoprefixer": "postcss -u autoprefixer --no-map.inline --autoprefixer.browsers \"last 1 versions\" -r dist/*.css",
"banner": "banner-cli dist/*.css",
"watch": "onchange src -- run-p build",
2016-11-11 05:30:09 +00:00
"serve": "browser-sync start --no-notify -s test --ss dist -f dist",
"backstop": "run-s build && run-s serve compare",
"reference": "backstop reference --config backstop.config.js",
"compare": "backstop test --config backstop.config.js",
2020-05-15 04:18:35 +00:00
"lint": "prettier-standard --check && sass-lint -c .sasslintrc src --verbose --no-exit",
2019-07-09 13:23:31 +00:00
"prepublish": "run-s build",
"postpublish": "run-s clean",
2020-05-15 04:18:35 +00:00
"test": "npm run build && nyc ava"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": [
"prettier-standard --format",
"git add"
]
2018-05-09 12:46:55 +00:00
},
"resolutions": {
"natives": "1.1.3"
2019-07-09 13:23:31 +00:00
}
2015-12-10 22:35:50 +00:00
}