-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.25 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.25 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@soufantech/supertest-openapi-validator",
"version": "0.0.0",
"description": "Performs OpenAPI contract checks with supertest",
"keywords": [
"openapi",
"supertest",
"contract-testing",
"validator"
],
"author": {
"name": "SouFan Team",
"email": "no-reply@soufan.com.br",
"url": "https://github.com/soufantech"
},
"repository": {
"type": "git",
"url": "https://github.com/soufantech/supertest-openapi-validator.git"
},
"homepage": "https://github.com/soufantech/supertest-openapi-validator#readme",
"bugs": {
"url": "https://github.com/soufantech/supertest-openapi-validator/issues"
},
"license": "UNLICENSED",
"publishConfig": {
"access:": "restricted"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --passWithNoTests",
"lint": "tsc --noEmit && eslint ./src/**/*.{ts,tsx}",
"clear": "rm -rf dist",
"build": "tsc",
"rebuild": "npm run clear && npm run build",
"prepublishOnly": "npm run rebuild && npm run test --silent"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.4",
"@types/node": "^14.0.23",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"express": "^4.17.1",
"husky": "^5.0.9",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"supertest": "^6.1.3",
"ts-jest": "^26.1.2",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.0.0-pre.52",
"typescript": "^4.1.4",
"typescript-eslint": "^0.0.1-alpha.0"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"tabWidth": 2
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@soufantech/result": "^0.6.0",
"@stoplight/prism-cli": "^4.1.2",
"@stoplight/prism-http": "^4.1.2",
"@stoplight/types": "^11.9.0",
"@types/pino": "^6.3.6",
"@types/supertest": "^2.0.10",
"fp-ts": "^2.9.5"
}
}