-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
103 lines (103 loc) · 2.91 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@stoplight/json-schema-tree",
"version": "0.0.0",
"description": "",
"keywords": [],
"sideEffects": false,
"homepage": "https://github.com/stoplightio/json-schema-tree",
"bugs": "https://github.com/stoplightio/json-schema-tree/issues",
"author": "Stoplight <support@stoplight.io>",
"repository": {
"type": "git",
"url": "https://github.com/stoplightio/json-schema-tree"
},
"license": "Apache-2.0",
"main": "src/index.ts",
"files": [
"**/*"
],
"engines": {
"node": ">=10.18"
},
"scripts": {
"build": "sl-scripts bundle --sourcemap",
"commit": "git-cz",
"lint": "yarn lint.prettier && yarn lint.eslint",
"lint.fix": "yarn lint.prettier --write && yarn lint.eslint --fix",
"lint.eslint": "eslint --cache --cache-location .cache/ --ext=.js,.ts src",
"lint.prettier": "prettier --ignore-path .eslintignore --check docs/**/*.md README.md",
"release": "sl-scripts release",
"release.dryRun": "sl-scripts release --dry-run --debug",
"test": "jest",
"test.prod": "yarn lint && yarn test --coverage --maxWorkers=2",
"test.update": "yarn test --updateSnapshot",
"test.watch": "yarn test --watch",
"yalc": "yarn build && (cd dist && yalc publish)"
},
"peerDependencies": {},
"dependencies": {
"@stoplight/json": "^3.12.0",
"@stoplight/json-schema-merge-allof": "^0.8.0",
"@stoplight/lifecycle": "^2.3.2",
"@types/json-schema": "^7.0.7",
"magic-error": "0.0.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "3",
"@stoplight/eslint-config": "^2.0.0",
"@stoplight/scripts": "8.2.1",
"@stoplight/types": "^12.0.0",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"@types/treeify": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"babel-jest": "^26.6.3",
"eslint": "^7.16.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"fast-glob": "^3.2.4",
"jest": "^26.6.2",
"prettier": "^2.2.1",
"treeify": "^1.1.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"resolutions": {
"cross-spawn": "7.0.5"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix --cache --cache-location .cache"
],
"docs/**/*.md": [
"prettier --ignore-path .eslintignore --write"
],
"README.md": [
"prettier --write"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"extends": "@stoplight/scripts/release"
}
}