-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.32 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.32 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
63
64
65
66
67
68
69
{
"name": "chai-openapi-response-validator",
"version": "0.10.0",
"description": "Simple Chai support for asserting that HTTP responses satisfy an OpenAPI spec",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha --recursive --exit",
"test:watch": "yarn test --watch",
"test:coverage": "nyc yarn test && nyc report --reporter=lcov && nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"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 && yarn test:mutation",
"format": "prettier --write ../../ --ignore-path ../../.prettierignore",
"lint": "eslint .",
"lint:fix": "yarn lint -- --fix"
},
"repository": "https://github.com/RuntimeTools/OpenAPIValidators/tree/master/packages/chai-openapi-response-validator",
"author": "OpenApiChai <openapichai@gmail.com>",
"contributors": [
"Jonny Spruce <jspruce94@gmail.com>",
"rwalle61 <richard.lh.waller@gmail.com>"
],
"license": "Apache-2.0",
"keywords": [
"chai",
"chai-plugin",
"http",
"response",
"openapi",
"validate"
],
"bugs": {
"url": "https://github.com/RuntimeTools/OpenAPIValidators/issues"
},
"homepage": "https://github.com/RuntimeTools/OpenAPIValidators/tree/master/packages/chai-openapi-response-validator#readme",
"files": [
"index.*",
"lib/**/*"
],
"devDependencies": {
"@stryker-mutator/core": "^3.1.0",
"@stryker-mutator/javascript-mutator": "^3.1.0",
"@stryker-mutator/mocha-framework": "^3.1.0",
"@stryker-mutator/mocha-runner": "^3.1.0",
"axios": "^0.20.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"eslint": "^7.12.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"mocha": "^8.1.3",
"nyc": "15.1.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"rimraf": "^3.0.2",
"supertest": "^5.0.0"
},
"dependencies": {
"openapi-validator": "^0.9.0"
}
}