UNPKG

empfindung

Version:

Library for common CIE color difference measurements

69 lines (68 loc) 1.71 kB
{ "name": "empfindung", "version": "1.0.1", "description": "Library for common CIE color difference measurements", "main": "lib/DeltaE.js", "directories": { "test": "tests" }, "scripts": { "prebuild": "eslint -f table src tests; exit 0", "test": "nyc ava -v", "report": "nyc report --reporter=html", "prepublish": "npm test" }, "bugs": { "url": "https://github.com/kenlimmj/empfindung/issues" }, "homepage": "https://github.com/kenlimmj/empfindung#readme", "keywords": [ "color", "CIE", "Delta E", "CIELAB", "CIE76", "CIE94", "CIEDE2000", "CMC l:c (1984)", "MacAdam" ], "repository": "github:kenlimmj/empfindung", "author": "Lim Mingje, Kenneth <me@kenlimmj.com> (https://kenlimmj.com)", "license": "MIT", "devDependencies": { "ava": "^0.15.2", "ava-spec": "^1.0.1", "babel-cli": "^6.10.1", "babel-eslint": "^6.0.4", "babel-plugin-transform-builtin-extend": "^1.1.0", "babel-plugin-transform-decorators-legacy": "^1.3.4", "babel-polyfill": "^6.9.1", "babel-preset-es2015": "^6.9.0", "babel-preset-stage-0": "^6.5.0", "babel-register": "^6.9.0", "eslint": "^2.12.0", "eslint-config-airbnb": "^9.0.1", "eslint-plugin-babel": "^3.2.0", "eslint-plugin-flow-vars": "^0.4.0", "eslint-plugin-flowtype": "^2.2.7", "eslint-plugin-import": "^1.8.1", "eslint-plugin-jsx-a11y": "^1.5.3", "eslint-plugin-react": "^5.2.1", "nyc": "^6.6.1" }, "ava": { "files": [ "tests/*.js" ], "source": [ "lib/*.js" ], "concurrency": 7, "failFast": true, "require": [ "babel-register" ], "babel": "inherit" } }