-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.29 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": "font-color-contrast",
"version": "11.1.0",
"description": "JavaScript module to use black or white font according to the given background color",
"scripts": {
"build": "tsc",
"prepare" : "npm run build",
"prepublishOnly" : "npm test",
"test": "jest"
},
"author": "Eduardo Russo",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/russoedu/font-color-contrast.git"
},
"homepage": "https://github.com/russoedu/font-color-contrast#readme",
"bugs": {
"url": "https://github.com/russoedu/font-color-contrast/issues"
},
"keywords": [
"color",
"contrast",
"font",
"background"
],
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"coveralls": "^3.1.1",
"eslint": "^8.1.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.3.1",
"jest-junit": "^13.0.0",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}