-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.37 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
{
"name": "@stoplight/spectral-url-versioning",
"version": "0.0.0",
"description": "There's no one right way to version, but there's a lot of objectively bad ways you want to avoid.",
"main": "dist/ruleset.js",
"module": "dist/ruleset.mjs",
"type": "commonjs",
"exports": {
".": {
"types": "./dist/ruleset.d.ts",
"import": "./dist/ruleset.mjs",
"require": "./dist/ruleset.js"
}
},
"directories": {
"test": "test"
},
"scripts": {
"build": "tsup",
"type-check": "tsc --noEmit --noErrorTruncation --pretty false --incremental false",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stoplightio/spectral-url-versioning.git"
},
"keywords": [
"openapi",
"openapi3",
"openapi31",
"api-design"
],
"author": "Phil Sturgeon <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stoplightio/spectral-url-versioning/issues"
},
"homepage": "https://github.com/stoplightio/spectral-url-versioning#readme",
"dependencies": {
"@stoplight/spectral-formats": "^1.4.0",
"@stoplight/spectral-functions": "^1.7.2"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^3.0.1",
"@stoplight/types": "^13.8.0",
"@types/jest": "^28.1.8",
"jest": "^28.1.3",
"ts-jest": "^28.0",
"tsup": "^6.2.3",
"typescript": "^4.8.4"
}
}