-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
50 lines (50 loc) · 1.36 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
{
"name": "oas3-chow-chow",
"version": "3.0.2",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "<[email protected]>",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atlassian/oas3-chow-chow.git"
},
"scripts": {
"build": "tsc",
"test": "jest --coverage --no-watchman",
"test:watch": "jest --watch",
"test:watch:debug": "node --inspect node_modules/.bin/jest --runInBand --watch",
"lint": "yarn lint:prettier",
"lint:prettier": "prettier src \"__test__/**/*.ts\" --check",
"fix:prettier": "yarn lint:prettier --write",
"prepublishOnly": "rm -rf lib && yarn build",
"release": "yarn prepublishOnly && changeset publish"
},
"prettier": {
"singleQuote": true
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.1.0",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"better-ajv-errors": "1.2.0",
"oas-validator": "^5.0.8",
"openapi3-ts": "^1.3.0",
"xregexp": "^4.2.4"
},
"devDependencies": {
"@changesets/cli": "2.26.2",
"@types/jest": "29.5.4",
"@types/node": "18.19.64",
"@types/xregexp": "3.0.30",
"babel-core": "6.26.3",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"prettier": "2.2.1",
"ts-jest": "^29.1.1",
"typescript": "5.6.3"
}
}