-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.67 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
65
66
67
68
{
"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"
}
}