-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.63 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
{
"name": "httpception",
"version": "4.0.1",
"description": "Mock HTTP module",
"main": "lib/httpception.js",
"scripts": {
"lint": "eslint . && prettier --check '**/*.{js,json,md}'",
"test": "npm run test-mocha && npm run test-jest && npm run test-integration",
"test-integration": "mocha integration-test/test.js --timeout 30000",
"test-mocha": "mocha test/**/*.test.js",
"test-jest": "jest --config test/jest/jest.config.js",
"test:ci": "npm run coverage",
"coverage": "NODE_ENV=development nyc --reporter=lcov --reporter=text --all -- npm run coverage-test && echo google-chrome coverage/lcov-report/index.html",
"coverage-test": "npm run test-mocha && JEST=false npm run test-integration",
"preversion": "offline-github-changelog --next=${npm_new_version} > CHANGELOG.md && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/papandreou/httpception.git"
},
"author": "Andreas Lind <[email protected]>",
"license": "BSD-3-Clause",
"dependencies": {
"unexpected": "^13.0.0",
"unexpected-mitm": "^14.1.0"
},
"devDependencies": {
"coveralls": "^3.0.1",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.0.4",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^27.0.1",
"mocha": "^8.3.0",
"nyc": "^15.0.0",
"offline-github-changelog": "^2.0.0",
"prettier": "~2.5.0",
"unexpected-http": "^9.0.0"
},
"nyc": {
"include": [
"lib/**"
]
}
}