forked from 3rd-Eden/colorspace
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.02 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.02 KB
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
{
"name": "@so-ric/colorspace",
"version": "1.1.6",
"description": "Generate HEX colors for a given namespace using color v5",
"main": "dist/index.cjs.js",
"scripts": {
"build": "rollup -c",
"prepare": "npm run build",
"test": "mocha test.js"
},
"keywords": [
"namespace",
"color",
"hex",
"colorize",
"name",
"space",
"colorspace"
],
"author": "Arnout Kazemier",
"license": "MIT",
"bugs": {
"url": "https://github.com/so-ric/colorspace/issues"
},
"homepage": "https://github.com/so-ric/colorspace",
"repository": {
"type": "git",
"url": "https://github.com/so-ric/colorspace"
},
"dependencies": {
"color": "^5.0.2",
"text-hex": "1.0.x"
},
"devDependencies": {
"assume": "2.3.x",
"mocha": "11.7.x",
"pre-commit": "1.2.x",
"rollup": "^3.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^5.0.0",
"@rollup/plugin-babel": "^6.0.0",
"rimraf": "^5.0.0"
}
}