-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.4 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.4 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
83
84
85
86
87
{
"name": "@pactflow/openapi-pact-comparator",
"version": "1.14.0",
"description": "An OpenAPI Specification and Pact Comparison library",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"bin": {
"opc": "dist/cli.cjs"
},
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/src/index.d.ts"
}
},
"scripts": {
"build": "rollup --config",
"build:watch": "rollup --config --watch",
"changeset:add": "changeset add",
"changeset:publish": "changeset publish",
"changeset:version": "changeset version",
"lint": "eslint --max-warnings=0",
"patch-package": "patch-package",
"prepare": "npm run build",
"prettier": "prettier --check .",
"prettier:fix": "prettier --cache --list-different --write .",
"start": "node dist/cli.mjs",
"test": "vitest",
"test:coverage": "vitest --coverage",
"typecheck": "tsc --project tsconfig.json"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/pactflow/openapi-pact-comparator.git"
},
"author": {
"name": "Voon Siong Wong",
"email": "voon.wong@smartbear.com"
},
"license": "MIT",
"type": "module",
"devDependencies": {
"@changesets/cli": "2.31.0",
"@eslint/js": "10.0.1",
"@rollup/plugin-commonjs": "29.0.2",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-typescript": "12.3.0",
"@sinclair/typebox": "0.34.49",
"@types/js-yaml": "4.0.9",
"@types/lodash-es": "4.17.12",
"@types/node": "24.12.2",
"@types/qs": "6.15.0",
"@vitest/coverage-v8": "4.1.5",
"ajv": "8.20.0",
"ajv-formats": "3.0.1",
"commander": "14.0.3",
"eslint": "10.2.1",
"eslint-config-prettier": "10.1.8",
"find-my-way": "9.5.0",
"js-yaml": "4.1.1",
"lodash-es": "4.18.1",
"openapi-types": "12.1.3",
"parse-multipart-data": "1.5.0",
"patch-package": "8.0.1",
"prettier": "3.8.3",
"qs": "6.15.1",
"rollup": "4.60.2",
"tslib": "2.8.1",
"tsx": "4.21.0",
"typescript": "6.0.3",
"typescript-eslint": "8.59.0",
"vitest": "4.1.5"
},
"imports": {
"#compare/*": "./src/compare/*.ts",
"#documents/*": "./src/documents/*.ts",
"#results/*": "./src/results/*.ts",
"#transform/*": "./src/transform/*.ts",
"#utils/*": "./src/utils/*.ts"
}
}