forked from adobe/leonardo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 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
{
"name": "@adobe/leonardo-contrast-colors",
"version": "1.0.0-alpha.16",
"description": "Generate colors based on a desired contrast ratio",
"repository": "[email protected]:adobe/leonardo.git",
"main": "./index.js",
"type": "module",
"exports": {
".": {
"default": "./index.js"
}
},
"jest": {
"moduleFileExtensions": [
"js",
"mjs",
"cjs",
"jsx",
"ts",
"tsx",
"json",
"node"
],
"testMatch": [
"**/__tests__/**/*.m[jt]s?(x)",
"**/?(*.)+(spec|test).m[jt]s?(x)"
]
},
"scripts": {
"dev": "NODE_OPTIONS=--experimental-vm-modules npx jest --watch",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest"
},
"author": "Nate Baldwin <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"chroma-js": "^2.4.2",
"ciebase": "^0.1.1",
"ciecam02": "^0.4.6",
"hsluv": "^0.1.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"apca-w3": "^0.1.9",
"colorparsley": "^0.1.8",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"jest": "^26.6.3"
},
"publishConfig": {
"access": "public"
}
}