-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.48 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.48 KB
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
{
"name": "ynn-http-assert",
"version": "0.0.6",
"description": "A more powerful http assertion library.",
"main": "src/index.js",
"scripts": {
"test": "jest --forceExit",
"tw": "jest --watch",
"test-watch": "npm run tw",
"test-cov": "jest --coverage --runInBand --forceExit --detectOpenHandles",
"lint": "eslint src --cache --ignore-path .eslintignore",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ynnjs/http-assert.git"
},
"engines": {
"node": ">=8.0"
},
"keywords": [
"http",
"assert",
"assertion",
"ynn"
],
"author": "LvChengbin <lvchengbin59@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ynnjs/http-assert/issues"
},
"homepage": "https://github.com/ynnjs/http-assert#readme",
"jest": {
"testMatch": [
"**/test/**/*.spec.js"
],
"coverageReporters": [
"text-summary",
"text",
"lcov"
],
"collectCoverageFrom": [
"src/**/*.js"
],
"testEnvironment": "node"
},
"devDependencies": {
"eslint": "^7.0.0-alpha.0",
"jest": "^25.1.0",
"pre-commit": "^1.2.2"
},
"dependencies": {
"@lvchengbin/is": "0.0.27",
"deep-equal": "^2.0.1",
"http-errors": "^1.7.3"
}
}