-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "rcolor",
"version": "2.0.2",
"description": "Random color is a simple javascript module for generating random colors that contrast enough to distinguish between one another, and are not too loud (by default, all colours can have readable black/dark font overlayed).",
"main": "./dist/rcolor.js",
"scripts": {
"build": "npm run build-plain && npm run build-min",
"build-plain": "webpack",
"build-min": "NODE_ENV=production webpack",
"test": "mocha --require babel-register src/*test.js",
"cover": "nyc npm test && nyc report --reporter=text-lcov --reporter=lcov",
"coveralls": "npm run cover | coveralls",
"format": "prettier --write src/**"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sterlingwes/RandomColor.git"
},
"keywords": [
"random",
"color",
"colour",
"goldenratio",
"golden ratio",
"graph",
"chart",
"series"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/sterlingwes/RandomColor/issues"
},
"homepage": "https://github.com/sterlingwes/RandomColor#readme",
"devDependencies": {
"babel-loader": "^6.3.2",
"babel-preset-env": "^1.1.8",
"babel-register": "^6.23.0",
"coveralls": "^3.0.9",
"expect.js": "^0.3.1",
"mocha": "^6.2.2",
"mocha-lcov-reporter": "^1.2.0",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"webpack": "^2.2.1"
}
}