-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
90 lines (90 loc) · 2.26 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
{
"name": "@stoplight/yaml",
"version": "0.0.0",
"description": "Useful functions when working with YAML.",
"keywords": [
"yaml",
"yaml parser",
"yaml.parse",
"parser",
"sourcemap"
],
"sideEffects": false,
"homepage": "https://github.com/stoplightio/yaml",
"bugs": "https://github.com/stoplightio/yaml/issues",
"author": "Stoplight <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/stoplightio/yaml"
},
"license": "Apache-2.0",
"main": "src/index.ts",
"files": [
"**/*"
],
"engines": {
"node": ">=16"
},
"scripts": {
"build": "sl-scripts build",
"commit": "git-cz",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint.fix": "yarn lint --fix",
"release": "sl-scripts release",
"release.docs": "sl-scripts release:docs",
"release.dryRun": "sl-scripts release --dry-run --debug",
"test": "vitest run",
"test.prod": "yarn lint && vitest run --coverage",
"test.update": "vitest run --update",
"test.watch": "vitest",
"prepare": "husky"
},
"dependencies": {
"@stoplight/ordered-object-literal": "^1.0.5",
"@stoplight/types": "^14.1.1",
"@stoplight/yaml-ast-parser": "0.0.50",
"tslib": "^2.6.3"
},
"devDependencies": {
"@stoplight/eslint-config": "3.0.0",
"@stoplight/scripts": "10.0.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.21.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.3.1",
"typescript": "5.4.5",
"vitest": "^1.6.0"
},
"lint-staged": {
"*.{ts,tsx}$": [
"yarn lint.fix",
"git add"
]
},
"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"
}
}