87 lines
2.1 KiB
JSON
87 lines
2.1 KiB
JSON
{
|
|
"name": "milligram",
|
|
"version": "1.2.4",
|
|
"description": "A minimalist CSS framework.",
|
|
"homepage": "https://milligram.github.io",
|
|
"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": [
|
|
".appveyor.yml",
|
|
".editorconfig",
|
|
".eslintrc",
|
|
".github",
|
|
".gitignore",
|
|
".npmignore",
|
|
".sasslintrc",
|
|
".travis.yml",
|
|
"backstop.conf.js",
|
|
"bower.json",
|
|
"changelog.md",
|
|
"composer.json",
|
|
"package.js",
|
|
"package.json",
|
|
"src",
|
|
"test"
|
|
],
|
|
"dependencies": {
|
|
"normalize.css": "~5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer": "^6.5.4",
|
|
"ava": "^0.17.0",
|
|
"backstopjs": "^2.3.5",
|
|
"banner-cli": "^0.10.0",
|
|
"browser-sync": "^2.18.5",
|
|
"husky": "^0.11.9",
|
|
"node-sass": "^3.13.1",
|
|
"npm-run-all": "^2.3.0",
|
|
"nyc": "^10.0.0",
|
|
"onchange": "^2.5.0",
|
|
"postcss-cli": "^2.6.0",
|
|
"rimraf": "^2.5.4",
|
|
"sass-lint": "^1.10.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=4"
|
|
},
|
|
"scripts": {
|
|
"start": "run-p build watch serve",
|
|
"build": "run-s clean sass autoprefixer banner",
|
|
"clean": "rimraf dist",
|
|
"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",
|
|
"serve": "browser-sync start --no-notify -s test --ss dist -f dist",
|
|
"backstop": "run-s build && run-p serve compare",
|
|
"reference": "backstop reference --configPath=backstop.conf.js",
|
|
"compare": "backstop test --configPath=backstop.conf.js",
|
|
"lint": "sass-lint -c .sasslintrc \"src/*.sass\" --verbose --no-exit",
|
|
"ava": "nyc ava",
|
|
"test": "run-s build lint ava",
|
|
"precommit": "run-p test"
|
|
}
|
|
}
|