-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
67 lines (67 loc) · 1.78 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
{
"name": "avantation",
"description": "Build OpenAPI3.0 specification from HAR",
"version": "2.0.5",
"author": "Anbarasan K <[email protected]> (https://www.avantation.in)",
"bin": {
"avantation": "./bin/run"
},
"man": "./man/avantation.1",
"bugs": "https://github.com/anbuksv/avantation/issues",
"dependencies": {
"@oclif/command": "^1.5.6",
"@oclif/config": "^1.9.0",
"@oclif/plugin-help": "^2.1.4",
"generate-schema": "^2.6.0",
"httpsnippet": "^1.16.5",
"json2yaml": "^1.1.0",
"shins": "^2.3.2-3",
"tslib": "^1.9.3",
"url-parse": "^1.4.4",
"widdershins": "^3.6.6"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^5.2.7",
"@types/node": "^10.12.12",
"chai": "^4.3.4",
"mocha": "^9.0.1",
"ts-node": "^7.0.1",
"typescript": "^3.1.6"
},
"engines": {
"node": ">=10.14.2"
},
"files": [
"/bin",
"/lib",
"/man"
],
"homepage": "https://github.com/anbuksv/avantation",
"keywords": [
"oclif",
"avantation",
"documentation",
"REST",
"REST API'S",
"API",
"OpenAPI Specification",
"OAS",
"Swagger",
"HAR",
"OpenAPI"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "avantation"
},
"repository": "anbuksv/avantation",
"scripts": {
"build": "tsc --build tsconfig.json",
"clean": "tsc --build --clean",
"prepack": "rm -rf lib && tsc -b ",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register/index.js 'test/**/*.ts'"
},
"types": "lib/index.d.ts"
}