-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 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
68
69
70
{
"name": "adr-tool",
"description": "easy CLI for ADR docs",
"version": "0.3.0",
"author": "Kerem Sevencan @keremciu",
"bin": {
"adr-tool": "./bin/run"
},
"bugs": "https://github.com/keremciu/adr-tool/issues",
"dependencies": {
"@oclif/command": "^1.8.16",
"@oclif/config": "^1.18.2",
"@oclif/errors": "^1.3.5",
"@oclif/plugin-help": "^5.1.10",
"@types/inquirer": "^8.1.3",
"inquirer": "^8.2.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.10",
"@oclif/test": "^2.0.3",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"chai": "^4.3.4",
"eslint": "^8.7.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.2",
"eslint-plugin-unicorn": "^40.1.0",
"memfs": "^3.4.4",
"mocha": "^9.1.4",
"rewiremock": "^3.14.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.5",
"unionfs": "^4.4.0"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/bin",
"/lib",
"/templates",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/keremciu/adr-tool",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "adr-tool",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "keremciu/adr-tool",
"scripts": {
"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": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}