-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.88 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.88 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
58
59
60
61
62
{
"name": "jest-openapi",
"version": "0.10.0",
"description": "Jest matchers for asserting that HTTP responses satisfy an OpenAPI spec",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:coverage:browse": "yarn test:coverage; open coverage/lcov-report/index.html",
"test:mutation": "stryker run",
"posttest:mutation": "rimraf commonTestResources",
"test:precommit": "yarn format && yarn lint && yarn test:coverage",
"test:ci": "yarn test:precommit",
"format": "prettier --write ../../ --ignore-path ../../.prettierignore",
"lint": "eslint .",
"lint:fix": "yarn lint -- --fix"
},
"repository": "https://github.com/RuntimeTools/OpenAPIValidators/tree/master/packages/jest-openapi",
"author": "rwalle61 <richard.lh.waller@gmail.com>",
"contributors": [
"Jonny Spruce <jspruce94@gmail.com>"
],
"license": "Apache-2.0",
"keywords": [
"jest",
"openapi",
"testing",
"response",
"validate",
"assertions"
],
"bugs": {
"url": "https://github.com/RuntimeTools/OpenAPIValidators/issues"
},
"homepage": "https://github.com/RuntimeTools/OpenAPIValidators/tree/master/packages/jest-openapi#readme",
"files": [
"index.*",
"src/**/*"
],
"devDependencies": {
"@stryker-mutator/core": "^3.1.0",
"@stryker-mutator/javascript-mutator": "^3.1.0",
"@stryker-mutator/jest-runner": "^3.1.0",
"axios": "^0.20.0",
"eslint": "^7.12.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"jest": "^26.5.2",
"request-promise": "^4.2.6",
"rimraf": "^3.0.2",
"supertest": "^5.0.0"
},
"dependencies": {
"jest-matcher-utils": "^26.5.2",
"openapi-validator": "^0.9.0"
}
}