Last active
July 2, 2017 16:43
-
-
Save m-e-h/458093288d6339370c11e9b8abcd5376 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "_s", | |
| "version": "1.0.0", | |
| "scripts": { | |
| "scss": "node-sass --include-path scss sass/style.scss style.css --output-style=expanded --indent-type=tab --indent-width=1", | |
| "autoprefixer": "postcss style.css -u autoprefixer -o style.css --no-map", | |
| "stylelint": "stylelint 'style.css'", | |
| "stylefix": "stylelint 'style.css' --syntax scss --fix", | |
| "scsslint": "stylelint 'sass/**/*.scss'", | |
| "scssfix": "stylelint 'sass/**/*.scss'", | |
| "eslint": "eslint 'js/**'", | |
| "esfix": "eslint 'js/**' --fix" | |
| }, | |
| "devDependencies": { | |
| "autoprefixer": "^7.1.1", | |
| "browserslist": "^2.1.5", | |
| "eslint": "^4.1.1", | |
| "eslint-config-wordpress": "^2.0.0", | |
| "node-sass": "^4.5.3", | |
| "postcss-cli": "^4.1.0", | |
| "stylelint": "^7.12.0", | |
| "stylelint-config-wordpress": "^11.0.0" | |
| }, | |
| "stylelint": { | |
| "defaultSeverity": "warning", | |
| "extends": "stylelint-config-wordpress" | |
| }, | |
| "eslintConfig": { | |
| "extends": "wordpress" | |
| }, | |
| "eslintIgnore": [ | |
| "js/**.min.js" | |
| ], | |
| "browserslist": [ | |
| "> 1%", | |
| "last 2 versions" | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment