-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.43 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.43 KB
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
{
"name": "@atlassian/koa-oas3",
"version": "4.0.0",
"main": "lib/index.js",
"types": "lib/index.d.js",
"author": "<tli@atlassian.com>",
"license": "Apache-2.0",
"publishConfig": {
"registry": "https://packages.atlassian.com/api/npm/npm-public/"
},
"scripts": {
"build": "tsc",
"test": "jest --coverage --no-watchman",
"test:watch": "jest --coverage --watch",
"prepublishOnly": "rm -rf lib && yarn build",
"release": "yarn prepublishOnly && changeset publish"
},
"jest": {
"testEnvironmentOptions": {
"url": "http://localhost/"
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"node"
]
},
"dependencies": {
"js-yaml": "^4.1.0",
"jsonfile": "^6.1.0",
"koa-bodyparser": "^4.2.1",
"koa-compose": "^4.1.0",
"oas-validator": "^5.0.3",
"oas3-chow-chow": "^4.0.0",
"qs": "^6.14.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/jsonfile": "^6.1.4",
"@types/koa": "^2.15.0",
"@types/koa-bodyparser": "^4.3.12",
"@types/qs": "^6.14.0",
"jest": "^30.0.2",
"koa": "^3.0.0",
"node-mocks-http": "^1.17.2",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"koa": ">=2 <4"
}
}