-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.44 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
66
{
"name": "@nextcss/color-tools",
"version": "1.0.9",
"description": "Color tools for browser and node.",
"keywords": [
"color",
"colors",
"color-tool",
"color-palette",
"color-palette-generator",
"hex",
"rgb",
"tool",
"tools",
"convert",
"converter",
"front-end",
"backend"
],
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist/*"
],
"publishConfig": {
"access": "public"
},
"author": {
"name": "Zsolt Tovis",
"email": "[email protected]",
"url": "https://toviszsolt.github.io/"
},
"funding": "https://github.com/sponsors/toviszsolt",
"repository": {
"type": "git",
"url": "https://github.com/nextcss/color-tools"
},
"bugs": {
"url": "https://github.com/nextcss/color-tools/issues"
},
"homepage": "https://nextcss.com",
"scripts": {
"watch": "rollup -c -w",
"build": "jest --verbose && rollup -c",
"test": "jest --watch",
"coverage": "jest --collect-coverage"
},
"dependencies": {},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"jest": "^29.3.1",
"rollup": "^3.2.5",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-terser": "^7.0.2"
}
}