1 | {
|
2 | "name": "koa-oas3",
|
3 | "version": "0.10.0",
|
4 | "main": "lib/index.js",
|
5 | "types": "lib/index.d.js",
|
6 | "author": "<tli@atlassian.com>",
|
7 | "license": "Apache-2.0",
|
8 | "scripts": {
|
9 | "test": "jest --coverage --no-watchman",
|
10 | "test:watch": "jest --coverage --watch",
|
11 | "prepublishOnly": "rm -rf lib && tsc"
|
12 | },
|
13 | "jest": {
|
14 | "testURL": "http://localhost/",
|
15 | "transform": {
|
16 | "^.+\\.tsx?$": "ts-jest"
|
17 | },
|
18 | "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
|
19 | "moduleFileExtensions": [
|
20 | "ts",
|
21 | "tsx",
|
22 | "js",
|
23 | "jsx",
|
24 | "node"
|
25 | ]
|
26 | },
|
27 | "dependencies": {
|
28 | "js-yaml": "^3.12.0",
|
29 | "jsonfile": "^4.0.0",
|
30 | "oas-validator": "^1.1.13",
|
31 | "oas3-chow-chow": "^0.13.0"
|
32 | },
|
33 | "devDependencies": {
|
34 | "@types/jest": "^23.3.5",
|
35 | "@types/js-yaml": "^3.11.2",
|
36 | "@types/jsonfile": "^4.0.1",
|
37 | "@types/koa": "^2.0.46",
|
38 | "babel-core": "^6.26.3",
|
39 | "babel-jest": "^23.4.2",
|
40 | "jest": "^23.4.2",
|
41 | "koa": "^2.5.2",
|
42 | "ts-jest": "^23.1.3",
|
43 | "typescript": "^3.0.1"
|
44 | },
|
45 | "peerDependencies": {
|
46 | "koa": "^2.5.2"
|
47 | }
|
48 | }
|