Fix space to tab

This commit is contained in:
CJ Patoilo 2016-08-06 09:34:11 -03:00 committed by GitHub
parent 926e8c7ba9
commit 4cf06b0d0b

View File

@ -1,73 +1,74 @@
{ {
"name": "milligram", "name": "milligram",
"version": "1.1.0", "version": "1.1.0",
"description": "A minimalist CSS framework.", "description": "A minimalist CSS framework.",
"homepage": "http://milligram.github.io", "homepage": "http://milligram.github.io",
"repository": "milligram/milligram", "repository": "milligram/milligram",
"license": "MIT", "license": "MIT",
"author": "CJ Patoilo <cjpatoilo@gmail.com>", "author": "CJ Patoilo <cjpatoilo@gmail.com>",
"main": "dist/milligram.css", "main": "dist/milligram.css",
"keywords": [ "keywords": [
"bootstrap", "bootstrap",
"css", "css",
"css3", "css3",
"flexbox", "flexbox",
"front-end", "front-end",
"framework", "framework",
"html", "html",
"html5", "html5",
"kickstarter", "kickstarter",
"less", "less",
"responsive", "responsive",
"mobile", "mobile",
"mobile-first", "mobile-first",
"postcss", "postcss",
"responsive", "responsive",
"sass", "sass",
"scss", "scss",
"stylus" "stylus"
], ],
"ignore": [ "ignore": [
".editorconfig", ".editorconfig",
".github", ".github",
".gitignore", ".gitignore",
".npmignore", ".npmignore",
".travis.yml", ".travis.yml",
"bower.json", ".versions",
"changelog.md", "bower.json",
"component.json", "changelog.md",
"composer.json", "component.json",
"package.js", "composer.json",
"package.json", "package.js",
"src", "package.json",
"test" "src",
], "test"
"dependencies": { ],
"normalize.css": "latest" "dependencies": {
}, "normalize.css": "latest"
"devDependencies": { },
"autoprefixer": "^6.3.6", "devDependencies": {
"backstopjs": "^1.3.5", "autoprefixer": "^6.3.6",
"browser-sync": "^2.13.0", "backstopjs": "^1.3.5",
"node-sass": "^3.7.0", "browser-sync": "^2.13.0",
"npm-run-all": "^2.1.1", "node-sass": "^3.7.0",
"onchange": "^2.4.0", "npm-run-all": "^2.1.1",
"postcss-cli": "^2.5.2", "onchange": "^2.4.0",
"sass-lint": "^1.8.2", "postcss-cli": "^2.5.2",
"slimerjs": "^0.906.2" "sass-lint": "^1.8.2",
}, "slimerjs": "^0.906.2"
"engines": { },
"node": "^6.0.0" "engines": {
}, "node": "^6.0.0"
"scripts": { },
"banner": "for m in dist/*.css; do echo '/*!\n * Milligram v1.1.0\n * http://milligram.github.io\n *\n * Copyright (c) 2016 CJ Patoilo\n * Licensed under the MIT license\n*/\n' | cat - $m > temp && mv temp $m; done", "scripts": {
"sass": "node-sass --output-style expanded src/milligram.sass dist/milligram.css && node-sass --output-style compressed src/milligram.sass dist/milligram.min.css", "banner": "for m in dist/*.css; do echo '/*!\n * Milligram v1.1.0\n * http://milligram.github.io\n *\n * Copyright (c) 2016 CJ Patoilo\n * Licensed under the MIT license\n*/\n' | cat - $m > temp && mv temp $m; done",
"autoprefixer": "postcss -u autoprefixer --no-map.inline --autoprefixer.browsers 'last 1 versions' -r dist/*.css", "autoprefixer": "postcss -u autoprefixer --no-map.inline --autoprefixer.browsers 'last 1 versions' -r dist/*.css",
"build": "npm-run-all lint sass autoprefixer banner", "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 .sass-lint.yml 'src/*.sass' --verbose --no-exit", "lint": "sass-lint -c .sasslintrc 'src/*.sass' --verbose --no-exit",
"watch": "onchange src -- npm run build", "build": "npm-run-all sass autoprefixer banner",
"serve": "browser-sync start -s test --ss dist -f dist", "watch": "onchange src -- npm run build",
"start": "npm-run-all -p watch serve", "serve": "browser-sync start -s test --ss dist -f dist",
"test": "cd node_modules/backstopjs && npm run test -- --configPath=../../test/visual/backstop.config.js && cd ../../" "start": "npm-run-all -p watch serve",
} "test": "cd node_modules/backstopjs && npm run test -- --configPath=../../test/visual/backstop.config.js && cd ../../"
}
} }