-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.56 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
{
"name": "otdgen",
"version": "3.1.1",
"description": "The script outputs test data from the OpenApi schema file to the folder specified by the argument.",
"main": "index.js",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:update": "NODE_OPTIONS=--experimental-vm-modules jest -u",
"format": "prettier --write src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tmizuma/openapi-test-data-generator"
},
"author": "Takuya Mizuma <[email protected]> (https://whnyab.com)",
"license": "MIT",
"keywords": [
"otdgen",
"openai",
"generator",
"openapi",
"api",
"js",
"javascript",
"ts",
"typescript"
],
"bugs": {
"url": "https://github.com/tmizuma/openapi-test-data-generator/issues"
},
"homepage": "https://github.com/tmizuma/openapi-test-data-generator",
"type": "module",
"husky": {
"hooks": {
"pre-commit": "npm run format"
}
},
"dependencies": {
"ansi-colors": "^4.1.3",
"axios": "^1.3.4",
"chalk": "^4.1.0",
"cli-progress": "^3.12.0",
"commander": "^9.4.1",
"conf": "^10.2.0",
"ejs": "^3.1.8",
"js-yaml": "^4.1.0",
"md5": "^2.3.0",
"url": "^0.11.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"babel-jest": "^29.2.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"husky": "^8.0.1",
"jest": "^29.2.0",
"prettier": "^2.7.1"
},
"bin": {
"otdgen": "./index.js"
}
}