2013-09-24 00:07:24 +02:00
|
|
|
{
|
2013-09-27 01:06:39 +02:00
|
|
|
"name": "flag-icon-css",
|
2020-06-10 13:53:19 +02:00
|
|
|
"version": "3.5.0",
|
2015-04-26 13:21:37 +02:00
|
|
|
"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"
|
|
|
|
},
|
2013-09-24 00:07:24 +02:00
|
|
|
"devDependencies": {
|
2021-05-25 04:14:00 +02:00
|
|
|
"grunt": "1.4.1",
|
2020-07-17 04:12:14 +02:00
|
|
|
"grunt-contrib-connect": "3.0.0",
|
2021-02-16 03:13:47 +01:00
|
|
|
"grunt-contrib-cssmin": "4.0.0",
|
2021-02-22 03:15:57 +01:00
|
|
|
"grunt-contrib-less": "3.0.0",
|
2018-06-13 10:59:03 +02:00
|
|
|
"grunt-contrib-watch": "1.1.0",
|
2021-03-30 04:14:12 +02:00
|
|
|
"husky": "6.0.0",
|
2021-07-26 04:15:22 +02:00
|
|
|
"lint-staged": "11.1.1",
|
2021-06-28 04:14:54 +02:00
|
|
|
"prettier": "2.3.2",
|
2021-06-28 04:17:58 +02:00
|
|
|
"svgo": "2.3.1"
|
2017-11-17 01:42:54 +01:00
|
|
|
},
|
2018-11-19 17:26:13 +01:00
|
|
|
"lint-staged": {
|
|
|
|
"*.{json,md,scss,less,yaml,yml}": [
|
2020-02-04 17:13:20 +01:00
|
|
|
"prettier --write"
|
2018-11-19 17:26:13 +01:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
|
|
|
},
|
2017-11-17 01:42:54 +01:00
|
|
|
"scripts": {
|
2018-10-26 17:20:27 +02:00
|
|
|
"build": "grunt build",
|
2018-03-01 16:27:05 +01:00
|
|
|
"svgo": "svgo --pretty --indent=2 --precision=1 --config=svgo.yaml",
|
2018-02-22 03:32:04 +01:00
|
|
|
"svgo:min": "find flags | grep '\\.svg$' | xargs -Iz -n 1 svgo --config=svgo.yaml z",
|
2018-11-19 17:26:13 +01:00
|
|
|
"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}\"",
|
2020-02-04 17:13:20 +01:00
|
|
|
"test": "yarn prettier --list-different"
|
2015-09-05 10:34:56 +02:00
|
|
|
}
|
2013-09-24 00:07:24 +02:00
|
|
|
}
|