-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.35 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
{
"name": "@fr0st/color",
"version": "4.1.6",
"description": "FrostColor is a free, open-source color manipulation library for JavaScript.",
"keywords": [
"color",
"rgb",
"rgba",
"hex",
"hsl",
"hsv",
"cmy",
"cmyk"
],
"homepage": "https://github.com/elusivecodes/FrostColor",
"bugs": {
"url": "https://github.com/elusivecodes/FrostColor/issues",
"email": "elusivecodes@gmail.com"
},
"main": "src/index.js",
"type": "module",
"files": [
"dist",
"LICENSE",
"README.md",
"src"
],
"scripts": {
"build": "npm run js-compile && npm run js-minify",
"js-compile": "rollup --config",
"js-lint": "eslint",
"js-minify": "terser --compress passes=2 --mangle --source-map \"content=dist/frost-color.js.map\" --output dist/frost-color.min.js dist/frost-color.js",
"test": "mocha --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/elusivecodes/FrostColor.git"
},
"author": "Elusive <elusivecodes@gmail.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@fr0st/eslint-config": "^1.0.2",
"eslint": "^9.5.0",
"mocha": "^10.4.0",
"rollup": "^4.18.0",
"terser": "^5.31.1"
}
}