forked from acunniffe/sweater-comb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.23 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.23 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
{
"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",
"/schemas"
],
"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}'",
"lint:commits": "commitlint --from=ccbdd18876ab01a2be0801211a13a8609012425e -V",
"format": "prettier --write 'src/**/*.{js,ts}'"
},
"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",
"@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": {
"@babel/runtime": "^7.17.2",
"@useoptic/api-checks": "0.24.0",
"@useoptic/json-pointer-helpers": "0.24.0",
"@useoptic/openapi-cli": "0.24.0",
"@useoptic/openapi-io": "0.24.0",
"@useoptic/openapi-utilities": "0.24.0",
"chai": "^4.3.4",
"chalk": "^4.0.0",
"change-case": "^4.1.2",
"find-parent-dir": "^0.3.1",
"fs-extra": "^10.0.0",
"lodash.isequal": "^4.5.0",
"nice-try": "^3.0.0",
"yargs": "^17.3.0"
},
"bundledDependencies": [
"@useoptic/api-checks",
"@useoptic/json-pointer-helpers",
"@useoptic/openapi-cli",
"@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"
}
}
}