-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.67 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
{
"name": "expand-to-hex-color",
"version": "0.1.3",
"description": "Expands any string to valid full hex color",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "jest --config jestconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"check-updates": "npx npm-check-updates",
"check-updates:minor": "npx npm-check-updates --target minor",
"check-updates:patch": "npx npm-check-updates --target patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/honzatmn/expand-to-hex-color.git"
},
"files": [
"lib/**/*"
],
"keywords": [
"conversion",
"hex",
"color",
"hex",
"delight",
"autocomplete",
"expand"
],
"author": "Jan Toman",
"license": "MIT",
"bugs": {
"url": "https://github.com/honzatmn/expand-to-hex-color/issues"
},
"homepage": "https://github.com/honzatmn/expand-to-hex-color#readme",
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"ansi-regex": ">=6.0.1",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.4.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"dependencies": {
"css-color-names": "^1.0.1"
}
}