-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
74 lines (74 loc) · 2.34 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
{
"name": "unexpected-express",
"version": "13.1.2",
"description": "Extend the unexpected assertion library with support for testing Express middleware",
"main": "lib/unexpectedExpress.js",
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text --all -- npm test && echo google-chrome coverage/lcov-report/index.html",
"lint": "eslint . && prettier --check '**/*.{js,md}'",
"test": "mocha --require unexpected-markdown test/*.js `find documentation -name '*.md'`",
"test:ci": "npm run coverage",
"generate-site": "generate-site --require ./bootstrap-unexpected-markdown.js",
"update-examples": "generate-site --require ./bootstrap-unexpected-markdown.js --update-examples",
"deploy-site": "deploy-site",
"preversion": "offline-github-changelog --next=${npm_new_version} > CHANGELOG.md && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git://github.com/unexpectedjs/unexpected-express.git"
},
"keywords": [
"express",
"http",
"middleware",
"mock",
"test",
"unexpected"
],
"author": "Andreas Lind <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/unexpectedjs/unexpected-express/issues"
},
"homepage": "https://github.com/unexpectedjs/unexpected-express",
"peerDependencies": {
"express": "*",
"unexpected": "^10.27.0 || ^11.12.1 || ^12.0.0 || ^13.0.0"
},
"devDependencies": {
"body-parser": "^1.0.2",
"eslint": "^8.1.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",
"express": "^4.17.1",
"magicpen-prism": "^5.0.0",
"mocha": "^8.2.1",
"mock-fs": "^4.0.0",
"nyc": "^15.0.0",
"offline-github-changelog": "^1.7.0",
"prettier": "~2.5.0",
"unexpected": "^13.0.0",
"unexpected-documentation-site-generator": "^7.1.0",
"unexpected-markdown": "^5.0.0",
"unexpected-stream": "^5.1.0"
},
"dependencies": {
"bufferedstream": "^3.1.1",
"createerror": "^1.1.0",
"form-data": "^4.0.0",
"is-stream": "^2.0.0",
"lodash": "^4.0.0",
"messy": "^7.0.0",
"qs": "^6.5.1",
"unexpected-messy": "^11.1.0"
},
"nyc": {
"include": [
"lib/**"
]
}
}