{ "name": "milligram", "version": "1.2.3", "description": "A minimalist CSS framework.", "homepage": "http://milligram.github.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", ".coveralls.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.3", "ava": "^0.17.0", "backstopjs": "^2.3.3", "banner-cli": "^0.6.0", "browser-sync": "^2.18.2", "coveralls": "^2.11.15", "node-sass": "^3.13.0", "npm-run-all": "^2.3.0", "nyc": "^10.0.0", "onchange": "^2.5.0", "postcss-cli": "^2.6.0", "sass-lint": "^1.10.2" }, "engines": { "node": "^7.0.0" }, "scripts": { "prestart": "npm install", "pretest": "npm install", "banner": "banner-cli dist/*.css", "clean": "rm -rf dist", "autoprefixer": "postcss -u autoprefixer --no-map.inline --autoprefixer.browsers \"last 1 versions\" -r dist/*.css", "sass": "node-sass --output-style expanded src/milligram.sass dist/milligram.css && node-sass --output-style compressed src/milligram.sass dist/milligram.min.css", "lint": "sass-lint -c .sasslintrc \"src/*.sass\" --verbose --no-exit", "build": "run-s clean lint sass autoprefixer banner", "watch": "onchange src -- npm run build", "serve": "browser-sync start --no-notify -s test --ss dist -f dist", "start": "run-p build watch serve", "test": "nyc ava", "coveralls": "nyc report --reporter=text-lcov | coveralls", "reference": "backstop reference --configPath=backstop.conf.js", "compare": "backstop test --configPath=backstop.conf.js", "backstop": "run-s build && run-p serve compare" } }