-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.57 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "color-map",
"version": "0.0.0-development",
"description": "Color map generator",
"homepage": "https://github.com/unional/color-map",
"bugs": {
"url": "https://github.com/unional/color-map/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/unional/color-map.git"
},
"license": "MIT",
"author": {
"name": "Homa Wong (unional)",
"email": "homawong@gmail.com"
},
"main": "cjs/index.js",
"module": "esm/index.js",
"jsnext:main": "esm/index.js",
"typings": "cjs/index.d.ts",
"files": [
"cjs",
"dist",
"esm",
"ts"
],
"scripts": {
"build": "run-p build:cjs build:esm bundle",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:verify": "run-s build dependency-check size-limit",
"bundle": "webpack",
"clean": "rimraf cjs esm lib libm",
"coverage": "jest --coverage",
"dependency-check": "run-p dependency-check:unused dependency-check:missing",
"dependency-check:missing": "dependency-check . --missing --no-dev",
"dependency-check:unused": "dependency-check . --unused --no-dev",
"lint": "eslint --ext=js,ts .",
"prepublishOnly": "yarn build",
"release": "npx semantic-release",
"size-limit": "size-limit",
"test": "jest",
"verify": "run-p build:verify lint coverage",
"watch": "jest --watch"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0",
"@babel/plugin-proposal-optional-chaining": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@commitlint/cli": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@size-limit/preset-small-lib": "^7.0.5",
"@types/jest": "^27.4.0",
"assertron": "^9.0.0",
"colormap": "^2.3.1",
"dependency-check": "^4.1.0",
"eslint": "^8.6.0",
"eslint-plugin-harmony": "^6.0.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"jest-junit": "^13.0.0",
"jest-progress-tracker": "^3.0.1",
"jest-validate": "^27.4.2",
"jest-watch-repeat": "^2.0.0",
"jest-watch-suspend": "^1.1.2",
"jest-watch-toggle-config": "^2.0.1",
"jest-watch-typeahead": "^1.0.0",
"npm-run-all": "^4.1.5",
"param-case": "^2.1.1",
"pascal-case": "^2.0.1",
"rimraf": "^3.0.2",
"size-limit": "^7.0.5",
"ts-loader": "^9.0.0",
"typescript": "^4.5.4",
"webpack": "^5.0.0",
"webpack-cli": "^3.3.2"
},
"size-limit": [
{
"limit": "2 KB"
}
]
}