-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.09 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
{
"name": "chai-pretty-expect",
"version": "1.0.2",
"description": "Will JSON.stringify and pretty-print objects passed as 2nd, 3rd, ... parameter to expect, for nice test output",
"main": "lib/chai-pretty-expect.js",
"scripts": {
"test": "istanbul cover _mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git://github.com/debitoor/chai-pretty-expect.git"
},
"keywords": [
"chai",
"expect",
"pretty",
"output"
],
"author": "e-conomic",
"contributors": [
{
"name": "Allan Ebdrup",
"email": "[email protected]"
},
{
"name": "Andrii Shumada",
"email": "[email protected]",
"url": "http://eagleeye.github.io/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/e-conomic/chai-pretty-expect/issues"
},
"homepage": "https://github.com/e-conomic/chai-pretty-expect",
"dependencies": {
"lodash": "^4.17.20"
},
"devDependencies": {
"chai": "3.4.0",
"coveralls": "2.11.4",
"istanbul": "0.4.0",
"mocha": "2.3.3"
}
}