UNPKG

2.23 kBJSONView Raw
1{
2 "name": "simple-icons",
3 "version": "7.6.0",
4 "description": "SVG icons for popular brands https://simpleicons.org",
5 "homepage": "https://simpleicons.org",
6 "keywords": [
7 "svg",
8 "icons"
9 ],
10 "type": "commonjs",
11 "main": "index.js",
12 "types": "index.d.ts",
13 "exports": {
14 ".": "./index.js",
15 "./icons": {
16 "module": "./icons.mjs",
17 "import": "./icons.mjs",
18 "require": "./icons.js",
19 "default": "./icons.js"
20 },
21 "./icons/*": [
22 "./icons/*"
23 ]
24 },
25 "sideEffects": false,
26 "repository": {
27 "type": "git",
28 "url": "git+ssh://git@github.com/simple-icons/simple-icons.git"
29 },
30 "bugs": {
31 "url": "https://github.com/simple-icons/simple-icons/issues"
32 },
33 "author": "Simple Icons Collaborators",
34 "license": "CC0-1.0",
35 "funding": {
36 "type": "opencollective",
37 "url": "https://opencollective.com/simple-icons"
38 },
39 "devDependencies": {
40 "editorconfig-checker": "4.0.2",
41 "esbuild": "0.14.50",
42 "fake-diff": "1.0.0",
43 "husky": "8.0.1",
44 "is-ci": "3.0.1",
45 "jsonschema": "1.4.1",
46 "mocha": "10.0.0",
47 "named-html-entities-json": "1.0.0",
48 "npm-run-all": "4.1.5",
49 "prettier": "2.7.1",
50 "rimraf": "3.0.2",
51 "svg-path-bbox": "1.2.2",
52 "svg-path-segments": "1.0.0",
53 "svglint": "2.1.0",
54 "svgo": "2.8.0",
55 "svgpath": "2.5.0"
56 },
57 "scripts": {
58 "build": "node scripts/build/package.js",
59 "clean": "rimraf index.js icons.js icons.mjs icons.d.ts",
60 "format": "prettier --write .",
61 "lint": "run-s our-lint jslint jsonlint svglint wslint",
62 "our-lint": "node scripts/lint/ourlint.js",
63 "jslint": "prettier --check .",
64 "jsonlint": "node scripts/lint/jsonlint.js",
65 "svglint": "svglint icons/*.svg --ci --config .svglintrc.mjs",
66 "wslint": "editorconfig-checker",
67 "prepare": "is-ci || husky install",
68 "prepublishOnly": "npm run build",
69 "postpublish": "npm run clean",
70 "test": "mocha tests --reporter tests/min-reporter.cjs --inline-diffs",
71 "pretest": "npm run prepublishOnly",
72 "posttest": "npm run postpublish",
73 "svgo": "svgo --config svgo.config.js",
74 "get-filename": "node scripts/get-filename.js"
75 },
76 "engines": {
77 "node": ">=0.12.18"
78 }
79}