-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.44 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
81
{
"name": "unexpected-messy",
"version": "11.1.0",
"description": "Unexpected plugin for the messy library",
"main": "lib/unexpectedMessy.js",
"files": [
"lib",
"unexpectedMessy.min.js"
],
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint . && prettier --check '**/*.{js,json,md}'",
"test": "mocha && mocha $(find documentation -name '*.md')",
"prepublishOnly": "rollup -c",
"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",
"generate-site": "generate-site --require ./bootstrap-unexpected-markdown.js",
"update-examples": "generate-site --require ./bootstrap-unexpected-markdown.js --update-examples",
"deploy-site": "deploy-site.sh",
"preversion": "offline-github-changelog --next=${npm_new_version} > CHANGELOG.md && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git://github.com/unexpectedjs/unexpected-messy.git"
},
"keywords": [
"HTTP",
"request",
"response",
"assertion",
"unexpected",
"test",
"mocha"
],
"author": "Andreas Lind <andreaslindpetersen@gmail.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/unexpectedjs/unexpected-messy/issues"
},
"homepage": "https://github.com/unexpectedjs/unexpected-messy",
"peerDependencies": {
"messy": "^7.0.0",
"unexpected": "^10.27.0 || ^11.0.0-3 || ^12.0.0 || ^13.0.0"
},
"devDependencies": {
"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",
"mocha": "^8.2.1",
"nyc": "^15.0.0",
"offline-github-changelog": "^1.7.0",
"prettier": "~2.5.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"unexpected": "^13.0.0",
"unexpected-documentation-site-generator": "^6.0.0",
"unexpected-markdown": "^5.0.0"
},
"dependencies": {
"magicpen-media": "^3.0.0",
"messy": "^7.0.0",
"minimist": "^1.2.0",
"qs": "^6.5.1",
"underscore": "^1.8.3"
},
"nyc": {
"include": [
"lib/**"
]
}
}