-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
85 lines (85 loc) · 2.58 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@pactflow/swagger-mock-validator",
"version": "14.5.0",
"description": "A CLI tool to validate mocks against swagger/OpenApi specs.",
"bin": {
"swagger-mock-validator": "./bin/swagger-mock-validator.mjs"
},
"exports": {
".": "./dist/swagger-mock-validator-factory.js"
},
"scripts": {
"prettier": "prettier --check .",
"prettier:fix": "prettier --cache --write .",
"lint": "eslint",
"test": "jasmine --config=jasmine.json \"test/unit/**/*.ts\"",
"test:e2e": "jasmine --config=jasmine.json \"test/e2e/**/*.ts\"",
"build": "rm -rf dist && rollup -c",
"postinstall": "patch-package",
"changelog": "conventional-changelog -n commitlint.config.cjs -i CHANGELOG.md -s -p angular",
"version": "npm run build && npm run changelog && git add CHANGELOG.md",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pactflow/swagger-mock-validator.git"
},
"author": {
"name": "Ben Sayers (Atlassian)",
"email": "[email protected]"
},
"license": "Apache-2.0",
"engines": {
"node": ">=14.16"
},
"type": "module",
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@babel/preset-typescript": "^7.25.7",
"@babel/register": "^7.25.7",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.11.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/body-parser": "^1.19.5",
"@types/eslint__js": "^8.42.3",
"@types/express": "^5.0.0",
"@types/jasmine": "^5.1.4",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.10",
"@types/node": "^20.16.10",
"@types/verror": "^1.10.10",
"ansi-colors": "^4.1.3",
"body-parser": "^2.0.1",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"express": "^5.0.0",
"husky": "^9.1.6",
"jasmine": "^5.3.0",
"minimist": "^1.2.8",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"axios": "^1.7.7",
"commander": "^12.1.0",
"js-yaml": "^4.1.0",
"jsonpointer": "^5.0.1",
"lodash": "^4.17.21",
"openapi-types": "^12.1.3",
"patch-package": "^8.0.0",
"uuidjs": "^5.1.0",
"verror": "^1.10.1"
},
"types": "lib/api-types.d.ts"
}