This repository has been archived by the owner on Oct 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.2 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "diglett",
"version": "0.0.0",
"author": "Meeshkan",
"bin": {
"diglett": "./bin/run"
},
"bugs": "https://github.com/meeshkan/diglett/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"@types/better-queue": "^3.8.1",
"@types/debug": "^4.1.5",
"@types/js-yaml": "^3.12.1",
"@types/json-schema": "^7.0.3",
"@types/lodash": "^4.14.139",
"@types/nunjucks": "^3.1.2",
"better-queue": "^3.8.10",
"chalk": "^2.4.2",
"cross-fetch": "^3.0.4",
"debug": "^4.1.1",
"fp-ts": "^2.0.5",
"js-yaml": "^3.13.1",
"json-schema-faker": "^0.5.0-rc19",
"json-schema-ref-parser": "^7.1.1",
"json-schema-strictly-typed": "^0.0.14",
"loas3": "^0.1.4",
"lodash": "^4.17.19",
"monocle-ts": "^2.0.0",
"nunjucks": "^3.2.0",
"tslib": "^1"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@types/jest": "^24.0.18",
"@types/node": "^10",
"globby": "^10",
"husky": "^3.1.0",
"jest": "^24.9.0",
"oclif": "^1.13.6",
"ts-jest": "^24.1.0",
"ts-node": "^8",
"typedoc": "^0.15.4",
"typescript": "^3.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/meeshkan/diglett",
"keywords": [
"oclif",
"http"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "diglett",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "meeshkan/diglett",
"scripts": {
"compile": "tsc",
"start": "node bin/run",
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "jest",
"version": "oclif-dev readme && git add README.md",
"gen": "node ./bin/run generate:templates openapi/petstore.yaml > templates/petstore-templates.yaml",
"build:docs": "typedoc --out docs src --exclude \"**/*+(.spec|.e2e).ts\" --gitRevision master && cp gh-pages.config.yml docs/_config.yml"
},
"types": "lib/index.d.ts",
"husky": {
"hooks": {
"pre-push": "yarn build:docs"
}
}
}