-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.84 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
{
"name": "named-css-colors",
"version": "1.0.6",
"description": "Modern tree-shakeable CSS named colors utilities: a list of all named colors as names or hex codes, an object of name and hex code pairs, a function to check for named color, a helper union type of all named colors.",
"type": "module",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=20.x"
},
"scripts": {
"prepare": "husky install",
"prepublishOnly": "npm run build",
"release": "np",
"build": "rimraf ./dist && tsc",
"test": "jest",
"lint:tsc": "tsc --noEmit --skipLibCheck",
"lint:eslint": "eslint --ext .ts --max-warnings 0 .",
"lint:prettier": "prettier --check .",
"format:prettier": "prettier --write ."
},
"files": [
"dist"
],
"author": {
"name": "Andrei Hudovich",
"email": "[email protected]",
"url": "https://hudovich.dev/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrei-hudovich/named-css-colors.git"
},
"bugs": {
"url": "https://github.com/andrei-hudovich/named-css-colors/issues"
},
"homepage": "https://github.com/andrei-hudovich/named-css-colors#readme",
"license": "MIT",
"keywords": [
"css",
"named",
"names",
"colors",
"color"
],
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@tsconfig/node18": "^18.2.2",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "3.0.3",
"rimraf": "^5.0.4",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}