-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.26 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
{
"name": "unexpected-resemble",
"version": "5.0.1",
"description": "Resemble.js plugin for the Unexpected assertion library",
"main": "lib/unexpectedResemble.js",
"dependencies": {
"eslint-plugin-n": "^15.1.0",
"gettemporaryfilepath": "1.0.1",
"magicpen-media": "^3.0.0",
"object-assign": "^4.1.1",
"resemblejs": "^5.0.0"
},
"peerDependencies": {
"unexpected": "^10.27.0 || ^11.0.0 || ^12.0.0 || ^13.0.0"
},
"devDependencies": {
"browserify": "^17.0.0",
"bundle-collapser": "^1.3.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^10.0.1",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^8.2.1",
"nyc": "^15.0.0",
"prettier": "^2.2.0",
"proxyquire": "^2.1.0",
"unexpected": "^12.0.0",
"unexpected-documentation-site-generator": "^6.0.0",
"unexpected-markdown": "^5.0.0"
},
"files": [
"unexpectedResemble.min.js",
"lib"
],
"scripts": {
"lint": "eslint . && prettier --check '**/*.{js,json,md}'",
"test": "mocha ./documentation/**/*.md ./test/**/*.js",
"coverage": "nyc --reporter=lcov --reporter=text --all -- npm test && echo google-chrome coverage/lcov-report/index.html",
"prepublish": "browserify -i canvas-prebuilt -e lib/unexpectedResemble -s unexpectedResemble > unexpectedResemble.min.js",
"generate-site": "generate-site --require ./bootstrap-unexpected-markdown.js && cp -R testdata site-build/assertions/any/to-resemble/ && cp -R testdata site-build/",
"update-examples": "generate-site --require ./bootstrap-unexpected-markdown.js --update-examples && npm run generate-site",
"deploy-site": "deploy-site.sh"
},
"repository": {
"type": "git",
"url": "git://github.com/unexpectedjs/unexpected-resemble.git"
},
"keywords": [
"test",
"assertion",
"unexpected",
"image",
"resemblance",
"comparison",
"diff"
],
"author": "Andreas Lind <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/unexpectedjs/unexpected-resemble/issues"
},
"homepage": "https://github.com/unexpectedjs/unexpected-resemble",
"nyc": {
"include": [
"lib/**"
]
}
}