milligram/package.json

90 lines
2.2 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-14 00:16:33 +00:00
"version": "1.2.4",
2016-08-06 12:34:11 +00:00
"description": "A minimalist CSS framework.",
2017-01-24 05:30:50 +00:00
"homepage": "https://milligram.github.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
".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-12-13 05:19:30 +00:00
"autoprefixer": "^6.5.4",
2016-12-01 06:00:48 +00:00
"ava": "^0.17.0",
2016-12-13 05:19:30 +00:00
"backstopjs": "^2.3.5",
2017-01-24 20:20:25 +00:00
"banner-cli": "^0.9.2",
2016-12-13 05:19:30 +00:00
"browser-sync": "^2.18.5",
2017-01-24 20:20:25 +00:00
"editorconfig-tools": "^0.1.1",
"eslint": "^3.14.0",
"eslint-config-styled": "^0.0.0",
2016-12-13 05:19:30 +00:00
"husky": "^0.11.9",
"node-sass": "^3.13.1",
2016-11-19 18:35:46 +00:00
"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",
"rimraf": "^2.5.4",
2016-11-19 18:35:46 +00:00
"sass-lint": "^1.10.2"
2016-08-06 12:34:11 +00:00
},
"engines": {
2016-12-13 05:19:30 +00:00
"node": ">=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-p serve compare",
2016-11-11 05:30:09 +00:00
"reference": "backstop reference --configPath=backstop.conf.js",
"compare": "backstop test --configPath=backstop.conf.js",
2017-01-24 20:20:25 +00:00
"lint": "sass-lint -c .sasslintrc src --verbose --no-exit && eslint test -c styled && editorconfig-tools check .",
"ava": "nyc ava",
"test": "run-s build lint ava",
"precommit": "run-p test"
2016-08-06 12:34:11 +00:00
}
2015-12-10 22:35:50 +00:00
}