-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"name": "contra-color",
"version": "1.1.2",
"description": "For a given color, find a contrasting color (not optimal).",
"main": "dist/contra-color.cjs.js",
"module": "dist/contra-color.esm.js",
"browser": "dist/contra-color.umd.js",
"types": "dist/main.d.ts",
"dependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@rollup/plugin-typescript": "^8.2.5",
"rollup": "^2.58.0",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "ts-node test/test.ts",
"pretest": "npm run build"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/canbax/contra-color.git"
},
"keywords": [
"inverse",
"color",
"color",
"contrast",
"RGB",
"sRGB",
"luminance"
],
"author": "yusuf canbaz",
"license": "MIT",
"bugs": {
"url": "https://github.com/canbax/contra-color/issues"
},
"homepage": "https://github.com/canbax/contra-color#readme"
}