simple-icons/package.json

52 lines
1.4 KiB
JSON
Raw Normal View History

2017-05-10 15:08:35 +00:00
{
"name": "simple-icons",
2021-02-14 00:54:35 +00:00
"version": "4.11.0",
2017-05-10 15:08:35 +00:00
"description": "SVG icons for popular brands https://simpleicons.org",
"homepage": "https://www.simpleicons.org",
"keywords": [
"svg",
"icons"
],
"main": "index.js",
2017-09-17 02:17:42 +00:00
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/simple-icons/simple-icons.git"
},
"bugs": {
"url": "https://github.com/simple-icons/simple-icons/issues"
},
"author": "Simple Icons Collaborators",
"license": "CC0-1.0",
2017-09-11 19:53:21 +00:00
"devDependencies": {
"editorconfig-checker": "3.3.0",
2020-11-09 15:21:38 +00:00
"jest": "26.6.3",
"jest-diff": "26.6.2",
2019-09-30 05:21:06 +00:00
"jsonlint2": "1.7.1",
"npm-run-all": "4.1.5",
2020-12-22 16:15:46 +00:00
"svg-path-bbox": "0.2.0",
"svglint": "1.0.7",
2019-11-04 11:44:49 +00:00
"svgo": "1.3.2",
"svgpath": "2.3.0",
"uglify-js": "3.12.7"
},
"scripts": {
"build": "node scripts/build-package.js",
"clean": "rm -f icons/*.js index.js",
"lint": "run-s our-lint jsonlint svglint wslint",
"our-lint": "node scripts/lint.js",
"jsonlint": "jsonlint _data/simple-icons.json -q -V .jsonlintschema",
"svglint": "svglint icons/*.svg --ci",
"wslint": "editorconfig-checker -exclude \\.svg$",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
2018-09-11 10:32:16 +00:00
"test": "jest",
"pretest": "npm run prepublishOnly",
"posttest": "npm run postpublish",
"svgo": "svgo --config=./.svgo.yml",
"get-filename": "node scripts/get-filename.js"
},
"engine": {
"node": ">=0.12.18"
2017-09-11 19:53:21 +00:00
}
}