forked from openapi-library/OpenAPIValidators
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 2.05 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
{
"name": "chai-openapi-response-validator",
"version": "0.2.4",
"description": "Simple Chai support for asserting that HTTP responses satisfy an OpenAPI spec",
"main": "index.js",
"scripts": {
"test": "mocha test --recursive --exit",
"test:coverage": "nyc npm test && nyc report --reporter=html && nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"test:coverage:browse": "npm run test:coverage; open coverage/index.html",
"test:mutation": "stryker run",
"test:full": "npm run lint && npm run test:coverage && npm run test:mutation",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepublish": "npm run test:full"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RuntimeTools/chai-openapi-response-validator.git"
},
"author": "OpenApiChai <[email protected]>",
"contributors": [
"Jonny Spruce <[email protected]>",
"rwalle61 <[email protected]>"
],
"license": "MIT",
"keywords": [
"chai",
"chai-plugin",
"http",
"response",
"openapi",
"validate"
],
"bugs": {
"url": "https://github.com/RuntimeTools/chai-openapi-response-validator/issues"
},
"homepage": "https://github.com/RuntimeTools/chai-openapi-response-validator#readme",
"devDependencies": {
"@stryker-mutator/core": "^2.0.0",
"@stryker-mutator/javascript-mutator": "^2.0.0",
"@stryker-mutator/mocha-framework": "^2.0.0",
"@stryker-mutator/mocha-runner": "^2.0.0",
"chai": "^4.2.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-react": "^7.13.0",
"husky": "^2.3.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1"
},
"dependencies": {
"fs-extra": "^8.0.1",
"js-yaml": "^3.13.1",
"openapi-response-validator": "^3.8.1",
"openapi-schema-validator": "^3.0.3",
"path-parser": "^4.2.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run test:full"
}
}
}