-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.18 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.18 KB
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
{
"preferGlobal": true,
"name": "learnyoubash",
"version": "2.1.0",
"description": "Learn you how to write your first bash script",
"bin": {
"learnyoubash": "./bin/learnyoubash"
},
"scripts": {
"test": "eslint . && workshopper-adventure-test",
"postpublish": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/denysdovhan/learnyoubash.git"
},
"keywords": [
"nodeschool",
"workshopper",
"tutorial",
"bash"
],
"author": "Denys Dovhan <email@denysdovhan.com> (http://denysdovhan.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/denysdovhan/learnyoubash/issues"
},
"homepage": "https://github.com/denysdovhan/learnyoubash#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"dependencies": {
"chalk": "^5.3.0",
"diff": "^5.1.0",
"execa": "^8.0.1",
"inquirer": "^9.2.16",
"marked": "^12.0.2",
"marked-terminal": "^5.1.1",
"boxen": "^7.1.1",
"ansi-escapes": "^6.2.0",
"enquirer": "^2.4.1"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1"
}
}