-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.55 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": "@mtillmann/colors",
"version": "0.0.3",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"keywords": [
"color",
"library",
"hex",
"rgb",
"hsl",
"cmyk",
"lab",
"lch",
"color shades"
],
"author": "Martin Tillmann<[email protected]>",
"homepage": "https://github.com/Mtillmann/colors",
"bugs": {
"url": "https://github.com/Mtillmann/colors/issues"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "rimraf dist && tsup && node ./scripts/post-build.js && rollup -c",
"lint": "eslint src --ext .ts",
"publishify": "npm run build && npm publish --access public"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/chroma-js": "^2.4.4",
"@types/delta-e": "^0.0.2",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rimraf": "^5.0.5",
"rollup-plugin-external-globals": "^0.10.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"dependencies": {
"chroma-js": "^2.4.2"
}
}