forked from material-extensions/svg-color-linter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.74 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "svg-color-linter",
"displayName": "SVG Color Linter",
"version": "2.0.3",
"description": "Linting tool to check if SVG files use only colors of a given color palette",
"main": "./lib/index.js",
"module": "./lib/index.js",
"bin": {
"svg-color-linter": "bin/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "bun test",
"lint": "bunx @biomejs/biome check --write ./src",
"format": "bunx @biomejs/biome format --write ./src",
"changelog": "bunx changelog-machine --config changelog.config.json",
"prepublish": "bun run build",
"version": "bun run changelog && git add CHANGELOG.md"
},
"files": [
"lib/"
],
"keywords": [
"SVG",
"Linter",
"Colors"
],
"engines": {
"bun": ">=1.0.0"
},
"author": {
"name": "Philipp Kief",
"email": "[email protected]",
"url": "https://pkief.com"
},
"funding": "https://github.com/sponsors/pkief",
"license": "MIT",
"bugs": {
"url": "https://github.com/PKief/svg-color-linter/issues"
},
"homepage": "https://github.com/PKief/svg-color-linter/blob/main/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/PKief/svg-color-linter.git"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/bun": "^1.1.6",
"@types/chroma-js": "^2.4.4",
"@types/glob": "^8.1.0",
"@types/is-glob": "^4.0.4",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/minimist": "^1.2.5",
"changelog-machine": "^1.1.0",
"ts-jest": "^29.1.5",
"typescript": "^5.5.2"
},
"dependencies": {
"chroma-js": "^2.4.2",
"glob": "^10.4.2",
"is-glob": "^4.0.3",
"is-svg": "^5.0.1",
"js-yaml": "^4.1.0",
"minimist": "^1.2.8"
}
}