This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
99 lines (99 loc) · 2.33 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
{
"name": "@stoplight/json-ref-resolver",
"version": "0.0.0",
"description": "Recursively resolve JSON pointers and remote authorities.",
"keywords": [
"json-parser",
"json",
"jsonschema",
"json-schema",
"json-pointer",
"$ref",
"resolver",
"openapi",
"swagger",
"dereference",
"resolve"
],
"main": "src/index.ts",
"sideEffects": false,
"homepage": "https://github.com/stoplightio/json-ref-resolver",
"bugs": "https://github.com/stoplightio/json-ref-resolver/issues",
"author": "Stoplight <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/stoplightio/json-ref-resolver.git"
},
"license": "Apache-2.0",
"files": [
"**/*"
],
"engines": {
"node": ">=8.3.0"
},
"scripts": {
"build": "sl-scripts build",
"commit": "git-cz",
"lint": "tslint -p .",
"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",
"test.update": "yarn test --updateSnapshot",
"test.watch": "yarn test --watch"
},
"dependencies": {
"@stoplight/json": "^3.21.0",
"@stoplight/path": "^1.3.2",
"@stoplight/types": "^12.3.0 || ^13.0.0",
"@types/urijs": "^1.19.19",
"dependency-graph": "~0.11.0",
"fast-memoize": "^2.5.2",
"immer": "^9.0.6",
"lodash": "^4.17.21",
"tslib": "^2.6.0",
"urijs": "^1.19.11"
},
"devDependencies": {
"@stoplight/scripts": "^5",
"@types/jest": "^24.9.0",
"@types/lodash": "^4.14.178",
"benchmark": "^2.1",
"jest": "^29.6.1",
"ts-jest": "^29.1.1",
"tslint": "^5.20",
"tslint-config-stoplight": "~1.4",
"typescript": "~4.9.5"
},
"lint-staged": {
"*.{ts,tsx}$": [
"tslint -p tsconfig.json --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"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5",
"singleQuote": true
}
}