forked from bouvens/number-to-color
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.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
{
"name": "number-to-color",
"version": "1.0.0",
"description": "High performance number to bright color converter",
"main": "index.js",
"scripts": {
"start": "webpack serve --mode development",
"build": "webpack --mode production",
"lint": "eslint --ext .js .",
"lint:fix": "eslint --fix --ext .js .",
"test": "node ./test/benchmark.js",
"size": "npm run build && size-limit",
"deploy": "npm run build && npm run deploy:upload",
"deploy:upload": "gh-pages -d build",
"postpublish": "git push --all origin && git push origin --tags"
},
"size-limit": [
{
"path": "./index.js"
},
{
"path": "./map-color.js"
},
{
"path": "./rgb-to-hex.js"
}
],
"eslintConfig": {
"extends": "air-base"
},
"eslintIgnore": [
"/build"
],
"repository": "github:bouvens/number-to-color",
"keywords": [
"javascript",
"npm"
],
"author": "Alexander Demin <bouvens@gmail.com> (https://bouvens.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bouvens/number-to-color/issues"
},
"homepage": "https://bouvens.github.io/number-to-color",
"devDependencies": {
"@size-limit/preset-small-lib": "^7.0.8",
"benchmark": "^2.1.4",
"css-loader": "^6.7.1",
"eslint": "^8.16.0",
"eslint-config-air-base": "^0.3.1",
"gh-pages": "^4.0.0",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.0",
"size-limit": "^7.0.8",
"webpack": "^5.22.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "^4.9.0"
}
}