-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.88 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
{
"name": "@snyk/sweater-comb",
"packageManager": "yarn@3.0.2",
"version": "1.0.9",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"sweater-comb": "build/index.js"
},
"files": [
"/build"
],
"scripts": {
"test": "jest --colors",
"build": "yarn tsc --build --verbose",
"clean": "rm -rf build",
"compare": "yarn ts-node src/index.ts compare",
"bulk-compare": "yarn ts-node src/index.ts bulk-compare",
"changelog": "yarn ts-node src/changelog.ts",
"lint": "run-p lint:*",
"lint:formatting": "prettier --check 'src/**/*.{js,ts}'",
"format": "prettier --write 'src/**/*.{js,ts}'"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^26.0.24",
"@types/json-stable-stringify": "^1.0.33",
"babel-jest": "26.6.0",
"jest": "^26.6.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": {
"@useoptic/api-checks": "0.22.5",
"@useoptic/json-pointer-helpers": "0.22.5",
"@useoptic/openapi-io": "0.22.5",
"@useoptic/openapi-utilities": "0.22.5",
"chai": "^4.3.4",
"change-case": "^4.1.2",
"fs-extra": "^10.0.0",
"nice-try": "^3.0.0",
"yargs": "^17.3.0"
},
"bundledDependencies": [
"@useoptic/api-checks",
"@useoptic/json-pointer-helpers",
"@useoptic/openapi-io",
"@useoptic/openapi-utilities"
],
"jest": {
"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"
}
}
}