-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.91 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "svg-fill",
"version": "2.0.4",
"description": "Fills all shapes of an SVG in single colour",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"commit": "git-cz",
"clean": "del dist/*",
"build": "tsc",
"watch": "tsc --watch",
"test": "jest --coverage",
"lint": "eslint src --ext .js,.ts"
},
"files": [
"dist",
"svg-fill-illustration.svg"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/c1rrus/svg-fill.git"
},
"keywords": [
"svg",
"fill",
"color",
"icons",
"sprite"
],
"author": "James Nash (http://cirrus.twiddles.com/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/c1rrus/svg-fill/issues"
},
"homepage": "https://github.com/c1rrus/svg-fill#readme",
"dependencies": {
"@types/cheerio": "^0.22.31",
"@types/color": "^3.0.3",
"@types/node": "^14.18.33",
"@types/through2": "^2.0.38",
"cheerio": "^1.0.0-rc.5",
"color": "^4.2.3",
"through2": "^4.0.2"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@cyberfinity/tsconfig-node": "^1.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^5.0.0",
"eslint": "^8.27.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"semantic-release": "^21.0.1",
"ts-jest": "^29.0.3",
"typescript": "^5.0.2"
},
"engines": {
"node": ">= 14"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}