-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.99 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.99 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
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
{
"name": "@max-black/npm-practice",
"version": "0.0.8",
"description": "",
"main": "index.js",
"scripts": {
"test": "node run-all-tests.js",
"test-all": "node run-all-tests.js",
"test-first-100": "node test-cli.js -- 1 100",
"test-interactive": "node test-cli.js --interactive",
"test-first-100-interactive": "node test-cli.js -- 1 100 --interactive",
"test-env-issue": "node test-env-issue-detection.js",
"test-special-commands": "node test-special-commands.js",
"test-linux": "./test-linux-auto.sh",
"test-linux-quick": "./test-linux-auto.sh 2>&1 | tail -25",
"build-docker": "docker build -f Dockerfile.linux -t npm-practice-linux .",
"run-docker": "docker run -it --rm npm-practice-linux"
},
"keywords": [
"npm",
"cli",
"interactive",
"tutorial",
"practice",
"node",
"package-manager",
"npm-workflows",
"npm-book",
"learn",
"study",
"learning",
"terminal",
"hands-on",
"beginner",
"dev-tools",
"setup-script",
"nodejs",
"command-line",
"automation",
"npm-init",
"npm-install",
"npm-scripts",
"npm-cli",
"npm-commands",
"npm-tasks",
"npm-training",
"npm-guide",
"npm-tips",
"npm-examples",
"npm-for-beginners",
"npm-education",
"npm-practice-cli",
"max-black"
],
"author": "Max Black",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MaxBlack-dev/npm-practice.git"
},
"bugs": {
"url": "https://github.com/MaxBlack-dev/npm-practice/issues"
},
"homepage": "https://github.com/MaxBlack-dev/npm-practice#readme",
"type": "commonjs",
"bin": {
"npm-practice": "index.js"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"body-parser": "^2.2.0",
"chalk": "^4.1.2",
"express": "^5.1.0",
"inquirer": "^12.9.6",
"latest-version": "^9.0.0",
"lodash": "^4.17.21"
}
}