-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.19 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "color-check",
"description": "Color Check is a very tine library for checking your foreground and backgorunds colors against the WCAG2 color compliance standard.",
"version": "0.0.0-Ask-SemVerCli",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/motleydev/color-check.git"
},
"author": {
"name": "Jesse Martin",
"email": "[email protected]",
"url": "https://jessedavidmartin.com"
},
"main": "dist/index.js",
"scripts": {
"commit": "git-cz",
"build": "babel src -d dist",
"check-coverage": "nyc check-coverage --statements 100 --functions 100",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov",
"prebuild": "rimraf dist",
"post-build": "onchange 'dist/**.js' 'test/**.js' -- npm test",
"watch": "npm run build -- -w & npm run post-build",
"watch:test": "npm t -- -w",
"test": "standard && mocha test/test.js --compilers js:babel-register",
"cover": "nyc npm t",
"prepublish": "NODE_ENV='production' npm run build && npm test",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"gen-docs": "jsdoc2md src/index.js"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"WCAG",
"WCAG2",
"color",
"wcag",
"wcag2",
"snook",
"contrast",
"legibility"
],
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-babili": "0.0.5",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-2": "6.17.0",
"babel-register": "6.16.3",
"chai": "*",
"codecov": "1.0.1",
"commitizen": "2.8.6",
"cz-conventional-changelog": "1.2.0",
"ghooks": "1.3.2",
"jsdoc-to-markdown": "2.0.1",
"mocha": "*",
"nyc": "8.3.2",
"onchange": "1.x",
"rimraf": "2.5.4",
"semantic-release": "^4.3.5",
"standard": "*"
},
"standard": {
"ignore": [
"coverage/**",
"dist/**",
"node_modules/**"
]
},
"config": {
"ghooks": {
"pre-commit": "npm run cover && npm run check-coverage"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}