-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
65 lines (65 loc) · 1.58 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
56
57
58
59
60
61
62
63
64
65
{
"name": "swagger-to-mock",
"version": "0.1.12",
"description": "mock data generator from Swagger (OpenAPI 3)",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"prebuild": "rm -rf ./dist/",
"start": "npm run build && node ./dist/index.js -d ./dist/",
"prepublish": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"openapi3",
"swagger",
"mock",
"cli"
],
"bin": {
"swagger-to-mock": "./dist/index.js"
},
"author": "yayoc <[email protected]> (http://yayoc.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/yayoc/swagger-to-mock.git"
},
"bugs": {
"url": "https://github.com/yayoc/swagger-to-mock/issues"
},
"homepage": "https://github.com/yayoc/swagger-to-mock#readme",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.1.1",
"@types/node": "^14.0.0",
"jest": "^23.1.0",
"ts-jest": "^26.0.0",
"typescript": "^2.9.2"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"dependencies": {
"@types/chalk": "^2.2.0",
"@types/commander": "^2.12.2",
"@types/js-yaml": "^3.11.1",
"chalk": "^2.4.1",
"commander": "^5.0.0",
"js-yaml": "^3.12.0",
"path": "^0.12.7",
"openapi3-ts": "^1.0.0",
"swagger-combine": "^1.0.0"
}
}