-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
86 lines (86 loc) · 2.52 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
86
{
"name": "@snyk/sweater-comb",
"version": "2.0.0",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": "build/index.js",
"files": [
"/build",
"/schemas"
],
"engines": {
"node": ">=18"
},
"scripts": {
"test": "jest --colors",
"build": "tsc --build --verbose",
"clean": "rm -rf build",
"compare": "ts-node src/index.ts diff",
"bulk-compare": "ts-node src/index.ts diff-all",
"changelog": "ts-node src/changelog.ts",
"lint": "run-p lint:*",
"lint:code": "eslint --color --cache 'src/**/*.{js,ts}'",
"lint:formatting": "prettier --check 'src/**/*.{js,ts}'",
"lint:commits": "commitlint --from=ccbdd18876ab01a2be0801211a13a8609012425e -V",
"format": "prettier --write 'src/**/*.{js,ts}'",
"serve:docs": "techdocs-cli serve:mkdocs -v"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@commitlint/cli": "16.0.2",
"@techdocs/cli": "^1.1.1",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^26.0.24",
"@types/json-stable-stringify": "^1.0.33",
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-jest": "26.6.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.3.0",
"json-stable-stringify": "^1.0.1",
"node-fetch": "^3.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@babel/runtime": "^7.25.7",
"@stoplight/spectral-core": "^1.19.1",
"@stoplight/spectral-rulesets": "^1.20.0",
"@useoptic/optic": "^1.0.4",
"@useoptic/json-pointer-helpers": "^1.0.4",
"@useoptic/openapi-io": "^1.0.4",
"@useoptic/openapi-utilities": "^1.0.4",
"@useoptic/rulesets-base": "^1.0.4",
"chalk": "^4.0.0",
"change-case": "^4.1.2",
"commander": "11.1.0",
"find-parent-dir": "^0.3.1",
"fs-extra": "^10.0.0",
"yaml": "^2.6.0",
"yargs": "~17.6.0"
},
"overrides": {
"postman-collection": "4.2.0"
},
"jest": {
"maxWorkers": 5,
"testMatch": [
"<rootDir>/src/**/*.{spec,test}.{js,ts}"
],
"testPathIgnorePatterns": [
"build",
"node_modules"
],
"moduleNameMapper": {
"^nimma/fallbacks$": "<rootDir>/node_modules/nimma/dist/cjs/fallbacks/index.js",
"^nimma/legacy$": "<rootDir>/node_modules/nimma/dist/legacy/cjs/index.js"
}
}
}