-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.2 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
{
"name": "colors-named",
"version": "1.0.2",
"description": "A array with color names.",
"type": "module",
"types": "./lib/index.d.ts",
"exports": "./lib/index.js",
"homepage": "https://jaywcjlove.github.io/colors-named/",
"funding": "https://jaywcjlove.github.io/#/sponsor",
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/colors-named"
},
"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}\""
},
"keywords": [
"color",
"colors",
"colors-named",
"named-colors",
"named"
],
"author": "Kenny Wang<wowohoo@qq.com>",
"license": "MIT",
"files": [
"src/index.ts",
"lib"
],
"engines": {
"node": ">=14.16"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/lib/"
]
},
"lint-staged": {
"*.{js,ts,json}": "prettier --write"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^3.0.0",
"tsbb": "^4.1.14"
}
}