-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.18 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
{
"name": "distinct-colors",
"version": "3.0.0",
"description": "Generate a palette of visually distinct colors. It's great for charts.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "mocha",
"build": "babel src -d lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/internalfx/distinct-colors.git"
},
"keywords": [
"palette",
"colors",
"charts",
"graphs"
],
"author": "Bryan Morris",
"license": "ISC",
"bugs": {
"url": "https://github.com/internalfx/distinct-colors/issues"
},
"homepage": "https://github.com/internalfx/distinct-colors#readme",
"dependencies": {
"@types/chroma-js": "^2.0.0",
"chroma-js": "^2.1.0",
"mout": "^1.2.2"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/register": "^7.7.7",
"chai": "^4.2.0",
"chalk": "^4.0.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^7.0.0"
}
}