-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
96 lines (96 loc) · 2.56 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "colortranslator",
"version": "4.1.0",
"description": "A JavaScript library, written in TypeScript, to convert among different color models",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"exports": {
".": {
"require": {
"types": "./index.d.ts",
"default": "./index.js"
},
"import": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
}
}
},
"files": [
"esm/**/*",
"web/**/*",
"index.d.ts",
"index.js"
],
"scripts": {
"test:ts": "tsc --noEmit",
"test": "jest --verbose",
"lint": "eslint \"src/**/*.{js,ts}\" \"tests/**/*.ts\"",
"clean": "./scripts/clean.sh",
"finish": "./scripts/finish.sh",
"build": "pnpm clean && rollup --config rollup.config.js --bundleConfigAsCjs && pnpm finish",
"demo": "webpack serve --open --config webpack.demo.config.js",
"docs": "webpack --config webpack.demo.publish.js --mode production && pnpm build",
"compile:regexps": "pnpm plop",
"prepare": "pnpm build",
"prepublishOnly": "pnpm lint && pnpm test",
"version": "git add .",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elchininet/ColorTranslator.git"
},
"keywords": [
"color",
"color-converter",
"color-translator",
"color-manipulation",
"css-color",
"css-color-convert",
"rgb",
"rgba",
"hex",
"hexadecimal",
"hsl",
"hsla",
"cmyk",
"typescript"
],
"author": "ElChiniNet",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/elchininet/ColorTranslator/issues"
},
"homepage": "https://github.com/elchininet/ColorTranslator#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^9.17.0",
"globals": "^15.13.0",
"google-code-prettify": "^1.0.5",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.2",
"plop": "^4.0.1",
"rimraf": "^6.0.1",
"rollup": "^4.28.1",
"rollup-plugin-ts": "^3.4.5",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"style-loader": "^4.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.0",
"whatwg-fetch": "^3.6.20"
}
}