-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·64 lines (64 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
58
59
60
61
62
63
64
{
"name": "create-color",
"version": "2.0.6",
"description": "A tiny (565 B) JavaScript library to generate the permanent color from any string, array or object.",
"main": "lib/index.js",
"module": "src/index.js",
"types": "./types.d.ts",
"license": "MIT",
"keywords": [
"hash",
"color",
"string",
"convert",
"generate",
"create-color",
"generate-color",
"string-to-color",
"stringtocolor",
"stringtohash"
],
"bugs": {
"url": "https://github.com/stuneak/create-color/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/stuneak/create-color"
},
"author": {
"email": "stuneak@gmail.com",
"name": "Abu Shamsutdinov"
},
"scripts": {
"build": "rollup -c",
"size": "size-limit",
"lint": "eslint *.js",
"test": "jest --verbose"
},
"size-limit": [
{
"limit": "565 B",
"path": "lib/index.js"
}
],
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-loader": "^8.0.6",
"color": "^3.1.2",
"colorcolor": "^1.1.1",
"eslint": "^6.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"rollup": "^1.16.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-uglify": "^6.0.2",
"size-limit": "^1.3.7"
}
}