milligram/package.json

87 lines
2.1 KiB
JSON
Raw Normal View History

2015-12-10 22:35:50 +00:00
{
2016-08-06 12:34:11 +00:00
"name": "milligram",
2016-12-01 11:01:36 +00:00
"version": "1.2.2",
2016-08-06 12:34:11 +00:00
"description": "A minimalist CSS framework.",
"homepage": "http://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": [
2016-11-22 22:28:46 +00:00
".appveyor.yml",
2016-11-22 22:27:09 +00:00
".coveralls.yml",
2016-08-06 12:34:11 +00:00
".editorconfig",
2016-11-22 22:30:05 +00:00
".eslintrc",
2016-08-06 12:34:11 +00:00
".github",
".gitignore",
".npmignore",
2016-10-08 15:46:11 +00:00
".sasslintrc",
2016-08-06 12:34:11 +00:00
".travis.yml",
2016-10-08 15:46:11 +00:00
"backstop.conf.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": {
2016-11-19 18:35:46 +00:00
"autoprefixer": "^6.5.3",
2016-12-01 06:00:48 +00:00
"ava": "^0.17.0",
2016-11-19 18:35:46 +00:00
"backstopjs": "^2.3.3",
2016-12-01 11:01:36 +00:00
"banner-cli": "^0.5.0",
2016-11-19 18:35:46 +00:00
"browser-sync": "^2.18.1",
2016-11-22 22:27:09 +00:00
"coveralls": "^2.11.15",
2016-11-19 18:35:46 +00:00
"node-sass": "^3.13.0",
"npm-run-all": "^2.3.0",
2016-12-01 06:00:48 +00:00
"nyc": "^10.0.0",
2016-11-19 18:35:46 +00:00
"onchange": "^2.5.0",
"postcss-cli": "^2.6.0",
"sass-lint": "^1.10.2"
2016-08-06 12:34:11 +00:00
},
"engines": {
2016-11-19 18:35:46 +00:00
"node": "^7.0.0"
2016-08-06 12:34:11 +00:00
},
"scripts": {
"prestart": "npm install",
"pretest": "npm install",
2016-12-01 10:11:25 +00:00
"banner": "banner-cli dist/*.css",
2016-11-30 21:00:04 +00:00
"autoprefixer": "postcss -u autoprefixer --no-map.inline --autoprefixer.browsers \"last 1 versions\" -r dist/*.css",
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",
"lint": "sass-lint -c .sasslintrc \"src/*.sass\" --verbose --no-exit",
"build": "run-s lint sass autoprefixer banner",
2016-08-06 12:34:11 +00:00
"watch": "onchange src -- npm run build",
2016-11-11 05:30:09 +00:00
"serve": "browser-sync start --no-notify -s test --ss dist -f dist",
"start": "run-p watch serve",
2016-12-01 06:00:48 +00:00
"test": "run-s build",
"coverage": "nyc ava | coveralls",
2016-11-11 05:30:09 +00:00
"reference": "backstop reference --configPath=backstop.conf.js",
"compare": "backstop test --configPath=backstop.conf.js",
"backstop": "run-s build && run-p serve compare"
2016-08-06 12:34:11 +00:00
}
2015-12-10 22:35:50 +00:00
}