-
Notifications
You must be signed in to change notification settings - Fork 152
/
package.json
135 lines (135 loc) · 2.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "how2",
"author": {
"name": "Claudio Santini",
"email": "[email protected]"
},
"homepage": "https://how2terminal.com",
"version": "3.0.3",
"description": "AI for your terminal. Uses Google and Stackoverflow to find how to do things on a Unix command line.",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:santinic/how2.git"
},
"contributors": [
{
"name": "Paolo Cifariello",
"email": "[email protected]"
}
],
"preferGlobal": true,
"main": "./index.js",
"bin": {
"how2": "./bin/how2"
},
"scripts": {
"test": "mocha test",
"start": "./bin/how2",
"lint": " eslint --fix .",
"pkg": "pkg package.json",
"man": "pandoc doc/how2.1.md -s -t man > doc/how2.man && man ./doc/how2.man"
},
"pkg": {
"scripts": "build.js",
"targets": [
"node14-linux",
"node14-macos",
"node14-win",
"node14-macos-arm64"
],
"outputPath": "dist/binaries"
},
"node_deb": {
"version": "3.0.3",
"init": "none",
"entrypoints": {
"cli": "lib/index.js"
}
},
"dependencies": {
"axios": "^0.21.4",
"blessed": "^0.1.81",
"colors": "^1.4.0",
"ent": "^2.2.0",
"github-version-checker": "^2.3.0",
"google-it": "^1.6.3",
"inquirer": "^8.2.4",
"keypress": "^0.2.1",
"lodash": "^4.17.21",
"marked": "^4.1.0",
"marked-terminal": "^1.6.1",
"npm-latest": "^1.0.1",
"openurl": "^1.1.1",
"request": "^2.88.2",
"semver": "5.1.0",
"simple-spinner": "0.0.5",
"winston": "^3.8.2",
"yargs": "^17.5.1"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "8.22.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"mocha": "^10.1.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
},
"eslintConfig": {
"root": true,
"env": {
"commonjs": true,
"es2021": true,
"es6": true,
"node": true,
"jest": true
},
"extends": [
"standard"
],
"overrides": [
{
"files": [
"lib/*.js"
]
}
],
"ignorePatterns": [
"lib/stackexchange/*"
],
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {
"new-cap": "off",
"n/no-callback-literal": "off"
}
},
"keywords": [
"how2",
"howto",
"man",
"AI",
"terminal",
"stackoverflow",
"stack overflow",
"stackexchange",
"stack exchange"
],
"tags": [
"how2",
"howto",
"man",
"AI",
"terminal",
"stackoverflow",
"stack overflow",
"stackexchange",
"stack exchange"
]
}