-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
70 lines (70 loc) · 1.92 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
66
67
68
69
70
{
"name": "swagger-faker",
"version": "3.3.0",
"description": "Generate mocker services automatically through Swagger or OpenAPI",
"bin": {
"swagger-faker": "bin/cli.js"
},
"main": "dist/lib/index.js",
"module": "dist/module/index.js",
"types": "src/index.ts",
"files": [
"lib",
"module",
"src",
"README.md"
],
"scripts": {
"start": "node --loader ts-node/esm --no-warnings src/cli/index.ts",
"prepublishOnly": "pnpm test && pnpm build",
"test": "tsc && jest",
"build": "rm -rf dist/ && rollup -c rollup.config.ts --configPlugin typescript --bundleConfigAsCjs"
},
"repository": {
"type": "git",
"url": "git@github.com:reeli/swagger-faker.git"
},
"author": "reeli",
"license": "MIT",
"bugs": {
"url": "git@github.com:reeli/swagger-faker.git"
},
"homepage": "git@github.com:reeli/swagger-faker.git",
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/parser": "^7.21.9",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@changesets/cli": "^2.26.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-typescript": "^11.1.1",
"@types/axios": "0.14.0",
"@types/inquirer": "^9.0.3",
"@types/jest": "29.5.1",
"@types/js-yaml": "^4.0.5",
"@types/json-server": "^0.14.4",
"@types/lodash": "4.14.194",
"@types/node": "20.2.3",
"@types/prettier": "2.7.2",
"@types/rollup": "0.54.x",
"@types/swagger-schema-official": "^2.0.22",
"cheerio": "^1.0.0-rc.12",
"inquirer": "^9.2.6",
"jest": "^29.5.0",
"rollup": "^3.23.0",
"ts-node": "10.9.1",
"typedoc": "^0.24.7",
"typescript": "^5.0.4"
},
"dependencies": {
"@faker-js/faker": "^8.0.1",
"axios": "^1.4.0",
"commander": "^10.0.x",
"js-yaml": "^4.1.0",
"json-server": "^0.17.3",
"lodash": "^4.17.21",
"path-to-regexp": "^6.2.1",
"prettier": "^2.8.8",
"swagger2openapi": "^7.0.8"
}
}