{ "name": "milligram", "version": "1.3.0", "description": "A minimalist CSS framework.", "homepage": "https://milligram.io", "repository": "milligram/milligram", "license": "MIT", "author": "CJ Patoilo ", "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", ".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": "^9.6.1", "ava": "^2.2.0", "backstopjs": "^3.8.9", "banner-cli": "^0.14.0", "browser-sync": "^2.18.5", "eslint": "^6.0.1", "eslint-config-styled": "0.0.2", "husky": "^3.0.0", "node-sass": "^4.12.0", "npm-run-all": "^4.1.5", "nyc": "^14.1.1", "onchange": "^6.0.0", "postcss-cli": "^6.1.3", "rimraf": "^2.5.4", "sass-lint": "^1.12.1" }, "engines": { "node": ">=10.0.0" }, "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-s serve compare", "reference": "backstop reference --configPath=backstop.conf.js", "compare": "backstop test --configPath=backstop.conf.js", "lint": "sass-lint -c .sasslintrc src --verbose --no-exit && eslint . --ignore-path .gitignore package.js", "ava": "nyc ava", "precommit": "run-p test", "prepublish": "run-s build", "postpublish": "run-s clean", "test": "run-s build lint ava" }, "resolutions": { "natives": "1.1.3" } }