-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
55 lines (55 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
49
50
51
52
53
54
55
{
"name": "koa-oas3",
"version": "3.0.1",
"main": "lib/index.js",
"types": "lib/index.d.js",
"author": "<[email protected]>",
"license": "Apache-2.0",
"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": {
"testURL": "http://localhost/",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"node"
]
},
"dependencies": {
"js-yaml": "^3.13.1",
"jsonfile": "^5.0.0",
"koa-bodyparser": "^4.2.1",
"koa-compose": "^4.1.0",
"oas-validator": "^5.0.3",
"oas3-chow-chow": "^3.0.0",
"qs": "^6.9.1"
},
"devDependencies": {
"@changesets/cli": "2.26.2",
"@types/jest": "27.0.1",
"@types/js-yaml": "3.12.8",
"@types/jsonfile": "5.0.2",
"@types/koa": "2.11.0",
"@types/koa-bodyparser": "4.3.3",
"@types/qs": "^6.9.7",
"jest": "24.9.0",
"koa": "2.11.0",
"node-mocks-http": "1.10.1",
"ts-jest": "24.3.0",
"typescript": "5.2.2"
},
"peerDependencies": {
"koa": "2"
}
}