-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.14 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
88
89
90
91
92
{
"name": "aha-cli",
"description": "Command line interface for Aha! (www.aha.io)",
"version": "1.15.0",
"author": "Aha! (support@aha.io)",
"bin": {
"aha": "./bin/run"
},
"bugs": "https://github.com/aha-app/aha-cli/issues",
"dependencies": {
"@fal-works/esbuild-plugin-global-externals": "2.1.1",
"@oclif/config": "1.15.1",
"@oclif/core": "2.6.1",
"@oclif/plugin-help": "5.2.7",
"@types/inquirer": "7.3.1",
"chalk": "4.1.0",
"chokidar": "3.5.3",
"crypto": "1.0.1",
"esbuild": "0.11.2",
"form-data": "3.0.0",
"http-call": "5.3.0",
"inquirer": "8.0.0",
"netrc-parser": "3.1.6",
"open": "7.3.0",
"tslib": "1.13.0"
},
"devDependencies": {
"@types/node": "10.17.24",
"eslint": "5.16.0",
"eslint-config-oclif": "3.1.0",
"eslint-config-oclif-typescript": "0.1.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "3.3.1",
"globby": "10.0.2",
"oclif": "3.7.0",
"prettier": "2.2.1",
"ts-node": "8.10.2",
"typescript": "3.9.5"
},
"resolutions": {
"lodash": "4.17.21"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/bin",
"/lib",
"/schema",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/aha.d.ts"
],
"homepage": "https://github.com/aha-app/aha-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "aha",
"topics": {
"auth": {
"description": "Authenticate to Aha!"
},
"extension": {
"description": "Manage extensions"
}
},
"plugins": [
"@oclif/plugin-help"
],
"macos": {
"identifier": "io.aha.cli"
}
},
"repository": "aha-app/aha-cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b && oclif manifest && oclif readme",
"version": "oclif readme && git add README.md"
},
"types": "./aha.d.ts",
"prettier": {
"jsxSingleQuote": true,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid"
}
}