-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.19 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
{
"name": "hsl-matcher",
"version": "1.2.4",
"description": "A module to find HSL(a) color syntax substrings in a string with their offsets and their color instance.",
"author": "jaywcjlove",
"homepage": "https://jaywcjlove.github.io/hsl-matcher/",
"funding": "https://jaywcjlove.github.io/#/sponsor",
"license": "MIT",
"type": "module",
"types": "./lib/index.d.ts",
"exports": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/hsl-matcher"
},
"scripts": {
"prepack": "husky install && npm run build",
"start": "tsbb watch",
"build": "tsbb build",
"type-check": "tsc --noEmit",
"test": "tsbb test",
"coverage": "tsbb test --coverage",
"prettier": "prettier --write \"**/*.{js,ts,json}\""
},
"files": [
"src/index.ts",
"lib"
],
"keywords": [
"hsl",
"hsla",
"hsl-matcher",
"hsla-matcher",
"matcher",
"color",
"css",
"javascript"
],
"engines": {
"node": ">=16.0.0"
},
"lint-staged": {
"*.{js,ts,json}": "prettier --write"
},
"devDependencies": {
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.8.7",
"tsbb": "^4.1.3"
}
}