-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 870 Bytes
/
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
{
"name": "csscolor",
"private": true,
"version": "1.0.0",
"type": "module",
"keywords": [
"color",
"convert",
"rgb",
"hex"
],
"author": "Tom Kopp",
"license": "ISC",
"description": "Convert color from one space to another",
"repository": {
"type": "git",
"url": "https://github.com/witzbould/CssColor.git"
},
"bugs": {
"url": "https://github.com/witzbould/CssColor/issues"
},
"homepage": "https://github.com/witzbould/CssColor#readme",
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint -f=table \"packages/**/*.js\"",
"test": "npm run test --ws",
"test-bun": "bun test"
},
"devDependencies": {
"eslint": "9.11.1",
"eslint-formatter-table": "7.32.1",
"eslint-plugin-import-x": "4.3.0",
"eslint-plugin-jsdoc": "50.2.4",
"eslint-plugin-mocha": "10.5.0"
}
}