-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.33 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
{
"name": "kuzdoc",
"description": "The CLI that helps build the Kuzzle Docs",
"version": "2.7.0",
"author": "The Kuzzle Team <[email protected]>",
"bin": {
"kuzdoc": "./bin/run"
},
"bugs": "https://github.com/kuzzleio/kuzdoc/issues",
"scripts": {
"test:lint": "eslint src/ tests/ --ext .ts",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
},
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/errors": "^1.3.4",
"@oclif/plugin-help": "^3.2.1",
"@types/listr": "^0.14.2",
"axios": "^0.21.1",
"cli-ux": "^5.5.1",
"execa": "^5.0.0",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"inquirer": "^7.3.3",
"listr": "^0.14.3",
"ts-morph": "^13.0.2",
"tslib": "^2.1.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@oclif/dev-cli": "^1.26.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^11.0.4",
"@types/express": "^4.17.11",
"@types/fs-extra": "^9.0.11",
"@types/inquirer": "^7.3.1",
"@types/lodash": "^4.14.170",
"@types/node": "^14.18.34",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.24.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.2.0",
"globby": "^11.0.2",
"prettier-eslint": "^12.0.0",
"semantic-release-config-kuzzle": "^1.0.0",
"semantic-release-slack-bot": "^4.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/oclif.manifest.json"
],
"homepage": "https://github.com/kuzzleio/kuzdoc",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "kuzdoc",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "kuzzleio/kuzdoc",
"types": "lib/index.d.ts"
}