-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.72 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
{
"name": "@mattbrannon/color-tools",
"version": "1.0.6",
"description": "a set of utilities for working with color spaces",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/",
"README.md"
],
"scripts": {
"test": "jest",
"lint": "eslint .",
"prepare": "husky install",
"tsc:init": "tsc --init",
"build": "rimraf ./dist && tsc -p tsconfig.json && rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattbrannon/color-tools.git"
},
"keywords": [
"color",
"css",
"rgb",
"hsl",
"hex",
"contrast"
],
"author": "Matt Brannon",
"license": "ISC",
"bugs": {
"url": "https://github.com/mattbrannon/color-tools/issues"
},
"homepage": "https://github.com/mattbrannon/color-tools#readme",
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@types/jest": "^28.1.5",
"@typescript-eslint/parser": "^5.30.6",
"babel-jest": "^28.1.3",
"eslint": "^8.19.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": ">=6",
"jest": "^28.1.3",
"lint-staged": ">=10",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.76.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{css,md}": "prettier --write"
}
}