-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.14 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": "unexpected-color",
"version": "4.1.0",
"description": "Color comparison plugin for the Unexpected assertion library",
"main": "lib/unexpectedColor.js",
"scripts": {
"lint": "eslint . && prettier --check '**/*.{js,json,md}'",
"test": "mocha ./documentation/**/*.md ./test/**/*.js",
"test:ci": "npm run coverage && npm run generate-site",
"coverage": "nyc --reporter=lcov --reporter=text --all -- npm test && echo google-chrome coverage/lcov-report/index.html",
"prepublish": "browserify -p bundle-collapser/plugin -e lib/unexpectedColor -s unexpectedColor > unexpectedColor.min.js",
"generate-site": "generate-site --require ./bootstrap-unexpected-markdown.js",
"update-examples": "generate-site --require ./bootstrap-unexpected-markdown.js --update-examples && npm run generate-site",
"deploy-site": "deploy-site.sh"
},
"files": [
"unexpectedColor.min.js",
"lib"
],
"repository": {
"type": "git",
"url": "git://github.com/unexpectedjs/unexpected-color.git"
},
"keywords": [
"unexpected",
"assertion",
"color",
"colorspace",
"equality"
],
"author": "Andreas Lind <[email protected]>",
"license": "BSD",
"bugs": {
"url": "https://github.com/unexpectedjs/unexpected-color/issues"
},
"homepage": "https://github.com/unexpectedjs/unexpected-color",
"devDependencies": {
"browserify": "^17.0.0",
"bundle-collapser": "^1.3.0",
"coveralls": "^3.0.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^10.0.1",
"eslint-plugin-n": "^15.1.0",
"eslint-plugin-promise": "^6.0.0",
"istanbul": "^0.4.5",
"minimist": "^1.2.0",
"mocha": "^8.2.1",
"nyc": "^15.0.0",
"prettier": "^2.2.0",
"unexpected": "^13.0.0",
"unexpected-documentation-site-generator": "^7.1.0",
"unexpected-markdown": "^5.0.0"
},
"peerDependencies": {
"unexpected": "^10.0.0 || ^11.0.0-4 || ^12.0.0 || ^13.0.0"
},
"dependencies": {
"onecolor": "^4.0.0"
},
"nyc": {
"include": [
"lib/**"
]
}
}