-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
105 lines (105 loc) · 2.63 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
104
105
{
"name": "@stoplight/json",
"version": "0.0.0",
"description": "Useful functions when working with JSON.",
"keywords": [
"json",
"json parser",
"json.parse",
"parser",
"sourcemap"
],
"sideEffects": false,
"homepage": "https://github.com/stoplightio/json",
"bugs": "https://github.com/stoplightio/json/issues",
"author": "Stoplight <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/stoplightio/json"
},
"license": "Apache-2.0",
"main": "src/index.ts",
"files": [
"**/*"
],
"engines": {
"node": ">=8.3.0"
},
"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.dryRun": "sl-scripts release --dry-run --debug",
"test": "jest",
"test.prod": "yarn lint && yarn test --coverage --no-cache --max-workers=2",
"test.update": "yarn test --updateSnapshot",
"test.watch": "yarn test --watch"
},
"dependencies": {
"@stoplight/ordered-object-literal": "^1.0.3",
"@stoplight/path": "^1.3.2",
"@stoplight/types": "^13.6.0",
"jsonc-parser": "~2.2.1",
"lodash": "^4.17.21",
"safe-stable-stringify": "^1.1"
},
"devDependencies": {
"@stoplight/eslint-config": "^3.0.0",
"@stoplight/scripts": "^9.3.4",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.14.144",
"@types/node": "^12.12.5",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"benchmark": "^2.1.4",
"eslint": "^8.21.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.7.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",
"jest": "^28.1.3",
"prettier": "^2.3.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"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"
},
"resolutions": {
"rollup": "4.22.4",
"braces": "3.0.3",
"dot-prop": "4.2.1",
"shelljs": "0.8.5",
"ini": "1.3.6",
"semver": "7.5.2",
"ansi-regex": "5.0.1",
"json5": "2.2.2",
"cross-spawn": "7.0.5"
}
}