forked from atlassian/oas3-chow-chow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.28 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
{
"name": "oas3-chow-chow",
"version": "2.0.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "<tli@atlassian.com>",
"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": {
"ajv": "^6.12.3",
"better-ajv-errors": "1.1.0",
"json-schema-deref-sync": "^0.14.0",
"openapi3-ts": "^1.3.0",
"xregexp": "^4.2.4"
},
"devDependencies": {
"@changesets/cli": "2.16.0",
"@types/jest": "27.0.2",
"@types/node": "14.17.1",
"@types/xregexp": "3.0.30",
"babel-core": "6.26.3",
"babel-jest": "24.9.0",
"jest": "27.3.1",
"prettier": "2.2.1",
"ts-jest": "27.0.7",
"typescript": "4.4.4"
}
}