-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.81 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
82
83
84
85
86
87
88
{
"name": "unexpected-http",
"version": "9.0.0",
"description": "Unexpected plugin for testing http servers",
"main": "lib/unexpectedHttp.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint . && prettier --check '**/*.{js,json,md}'",
"test": "npm run test-node && npm run test-browser",
"test-browser": "npm run prepublish && karma start --single-run",
"test-node": "mocha test/*.js `find documentation -name '*.md'`",
"test:ci": "npm run coverage",
"coverage": "nyc --reporter=lcov --reporter=text npm run test-node && echo google-chrome coverage/lcov-report/index.html",
"prepublish": "rollup -c",
"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-http.git"
},
"keywords": [
"http",
"test",
"assertion",
"server",
"client"
],
"files": [
"unexpectedHttp.js",
"unexpectedHttp.min.js",
"lib"
],
"author": "Andreas Lind <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/unexpectedjs/unexpected-http/issues"
},
"homepage": "https://github.com/unexpectedjs/unexpected-http",
"dependencies": {
"messy": "^6.16.0",
"passerror": "^1.1.0",
"underscore": "^1.7.0",
"unexpected-messy": "^11.1.0"
},
"peerDependencies": {
"unexpected": "^10.27.0 || ^11.12.1 || ^12.0.0 || ^13.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"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",
"karma": "^6.0.0",
"karma-chrome-launcher": "^3.0.0",
"karma-mocha": "^2.0.0",
"magicpen-prism": "^5.0.0",
"mocha": "^8.2.1",
"nyc": "^15.0.0",
"offline-github-changelog": "^1.7.0",
"prettier": "~2.5.0",
"puppeteer": "^13.0.0",
"rollup": "^2.70.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-polyfill-node": "^0.9.0",
"rollup-plugin-terser": "^7.0.2",
"semver": "^7.0.0",
"stream-http": "^3.0.0",
"unexpected": "^13.0.0",
"unexpected-documentation-site-generator": "^6.0.0",
"unexpected-markdown": "^5.0.0"
},
"browser": {
"http": "./node_modules/stream-http",
"https": "./node_modules/stream-http"
}
}