-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
60 lines (60 loc) · 2.05 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": "ac-colors",
"version": "1.4.3",
"description": "ac-colors is a reactive JavaScript color library that can freely convert between RGB, HSL, HEX, XYZ, LAB, LCHab, LUV, and LCHuv, as well as handle random color generation and contrast ratio calculation.",
"main": "index.min.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"coverage": "nyc npm run test && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint --fix --ignore-path .eslintignore .",
"browserify": "npx browserify index.js --standalone Color --outfile dist/ac-colors.js",
"transpile": "npx babel index.js --out-file index.min.js && npx babel dist/ac-colors.js --out-file dist/ac-colors.min.js",
"minify": "npx uglifyjs --compress --mangle --keep-fnames --output index.min.js -- index.min.js && npx uglifyjs --compress --mangle --keep-fnames --output dist/ac-colors.min.js -- dist/ac-colors.min.js",
"build": "npm run lint && npm run browserify && npm run transpile && npm run minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vinaypillai/ac-colors.git"
},
"keywords": [
"acute-components",
"lch",
"lchab",
"lab",
"rgb",
"hex",
"hsl",
"color-converter",
"contrast-ratio",
"javascript",
"random-colors"
],
"author": "Vinay Pillai",
"license": "MIT",
"bugs": {
"url": "https://github.com/vinaypillai/ac-colors/issues"
},
"homepage": "https://github.com/vinaypillai/ac-colors#readme",
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"babel-eslint": "^10.1.0",
"browserify": "^16.5.2",
"chai": "^4.3.4",
"coveralls": "^3.1.0",
"eslint": "^7.28.0",
"eslint-config-google": "^0.14.0",
"eslint-config-strongloop": "^2.1.0",
"mocha": "^8.4.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"uglify-js": "^3.13.9"
},
"dependencies": {}
}