-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
136 lines (136 loc) · 3.41 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "@stoplight/http-spec",
"version": "0.0.0",
"description": "",
"keywords": [],
"sideEffects": false,
"homepage": "https://github.com/stoplightio/http-spec",
"bugs": "https://github.com/stoplightio/http-spec/issues",
"author": "Stoplight <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/stoplightio/http-spec"
},
"license": "Apache-2.0",
"files": [
"**/*"
],
"engines": {
"node": ">=14.13"
},
"type": "commonjs",
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./generators": {
"types": "./generators.d.ts",
"default": "./generators.js"
},
"./hash": {
"types": "./hash.d.ts",
"default": "./hash.js"
},
"./oas": {
"types": "./oas/index.d.ts",
"default": "./oas/index.js"
},
"./oas2": {
"types": "./oas2/index.d.ts",
"default": "./oas2/index.js"
},
"./oas2/operation": {
"types": "./oas2/operation.d.ts",
"default": "./oas2/operation.js"
},
"./oas3": {
"types": "./oas3/index.d.ts",
"default": "./oas3/index.js"
},
"./oas3/operation": {
"types": "./oas3/operation.d.ts",
"default": "./oas3/operation.js"
},
"./postman": {
"types": "./postman/index.d.ts",
"default": "./postman/index.js"
},
"./postman/operation": {
"types": "./postman/operation.d.ts",
"default": "./postman/operation.js"
}
},
"scripts": {
"prebuild": "rimraf dist",
"build": "sl-scripts build",
"lint": "eslint 'src/**/*.ts'",
"lint.fix": "yarn lint --fix",
"release": "sl-scripts release",
"release.dryRun": "sl-scripts release --dry-run --debug",
"test": "jest"
},
"dependencies": {
"@stoplight/json": "^3.18.1",
"@stoplight/json-schema-generator": "1.0.2",
"@stoplight/types": "14.1.0",
"@types/json-schema": "7.0.11",
"@types/swagger-schema-official": "~2.0.22",
"@types/type-is": "^1.6.3",
"fnv-plus": "^1.3.1",
"lodash": "^4.17.21",
"openapi3-ts": "^2.0.2",
"postman-collection": "^4.1.3",
"tslib": "^2.6.2",
"type-is": "^1.6.18"
},
"devDependencies": {
"@stoplight/eslint-config": "^3.0.0",
"@stoplight/scripts": "^9.2.0",
"@stoplight/test-utils": "^0.0.1",
"@types/jest": "27.4.1",
"@types/lodash": "^4.14.202",
"@types/postman-collection": "^3.5.7",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "27.5.1",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "27.1.4",
"typescript": "4.6.3",
"utility-types": "^3.10.0"
},
"lint-staged": {
"src/**/*.ts": [
"yarn eslint --fix"
]
},
"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"
}
}