-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.5 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
{
"name": "uniqolor",
"version": "1.1.1",
"description": "Generate unique and beautiful colors from any texts or numbers",
"author": "Rasool Dastoori",
"main": "dist/uniqolor.js",
"types": "src/index.d.ts",
"keywords": [
"uniqolor",
"uniqcolor",
"color",
"unique",
"random",
"hue",
"saturate",
"lightness",
"lightweight",
"uuid",
"generate"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dastoori/uniqolor.git"
},
"bugs": {
"url": "https://github.com/dastoori/uniqolor/issues"
},
"homepage": "https://github.com/dastoori/uniqolor#README",
"license": "MIT",
"scripts": {
"build": "rollup -c && rollup -c --environment MINIFY",
"test": "jest",
"coverage": "jest --coverage",
"codecov": "jest --coverage && codecov",
"lint": "eslint --cache src/",
"validate": "npm run lint && npm test",
"precommit": "npm run lint",
"prepush": "npm test",
"prepublishOnly": "npm run validate && npm run build"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-node-resolve": "^13.1.3",
"babel-jest": "^27.5.1",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jasmine": "^4.1.3",
"husky": "^7.0.4",
"jest": "^27.5.1",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2"
}
}