-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.67 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
{
"name": "colorwee",
"version": "1.0.1",
"description": "A mini package for color conversion not bloated with functions you will never use",
"main": "./dist/color.js",
"types": "./dist/color.d.ts",
"module": "./dist/color.es.js",
"type": "module",
"scripts": {
"clean": "rimraf dist",
"test": "jest --config jest.config.js --collect-coverage",
"test-watch": "jest --config jest.config.js --collect-coverage --watch",
"build": "npm run clean && rollup -c rollup.config.js",
"watch": "rollup -w -c rollup.config.js",
"watch:es": "rollup -w -c rollup.config.es.js",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "npm run format && eslint . --ext .ts --fix"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "latest",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"jest": "latest",
"jest-junit": "latest",
"prettier": "latest",
"rollup": "^4.30.1",
"rollup-plugin-cleanup": "^3.2.1",
"ts-jest": "latest",
"typescript": "latest"
},
"keywords": [
"color",
"colour",
"css",
"conversion",
"convert",
"converter",
"manipulation",
"rgb",
"rgba",
"hsl",
"hsla",
"hex",
"alpha",
"red",
"green",
"blue",
"hue",
"saturation",
"lightness",
"color-distance",
"color-conversion"
],
"author": "Bruno Marotta",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bmarotta/colorwee.git"
}
}