0
0
mirror of https://github.com/lipis/flag-icons.git synced 2024-11-22 02:47:32 +01:00
flags/package.json
dependabot-preview[bot] dc5d4257fc
Bump husky from 3.0.1 to 3.0.2
Bumps [husky](https://github.com/typicode/husky) from 3.0.1 to 3.0.2.
- [Release notes](https://github.com/typicode/husky/releases)
- [Changelog](https://github.com/typicode/husky/blob/master/CHANGELOG.md)
- [Commits](https://github.com/typicode/husky/compare/v3.0.1...v3.0.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-07-30 02:14:16 +00:00

47 lines
1.2 KiB
JSON

{
"name": "flag-icon-css",
"version": "3.3.0",
"author": "Panayiotis Lipiridis <lipiridis@gmail.com>",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"repository": {
"type": "git",
"url": "http://github.com/lipis/flag-icon-css"
},
"devDependencies": {
"grunt": "1.0.4",
"grunt-contrib-connect": "2.0.0",
"grunt-contrib-cssmin": "3.0.0",
"grunt-contrib-less": "2.0.0",
"grunt-contrib-watch": "1.1.0",
"husky": "3.0.2",
"lint-staged": "9.2.1",
"prettier": "1.18.2",
"svgo": "1.3.0"
},
"lint-staged": {
"*.{json,md,scss,less,yaml,yml}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"build": "grunt build",
"svgo": "svgo --pretty --indent=2 --precision=1 --config=svgo.yaml",
"svgo:min": "find flags | grep '\\.svg$' | xargs -Iz -n 1 svgo --config=svgo.yaml z",
"svgo:all": "find flags | grep '\\.svg$' | xargs -Iz -n 1 yarn svgo z",
"fix": "yarn prettier --write",
"prettier": "prettier \"**/*.{json,md,scss,less,yaml,yml}\"",
"test": "yarn prettier --list-different"
}
}