-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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
{
"name": "team-profile-generator",
"description": "This Node.js command-line application allows you to generate a webpage that displays basic information about your software engineering team.",
"version": "1.0.0",
"main": "app.js",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "https://github.com/FilipPaskalev/Team-Profile-Generator.git"
},
"homepage": "https://filippaskalev.github.io/Team-Profile-Generator/",
"author": "Filip Paskalev",
"license": "MIT",
"scripts": {
"start": "node app.js",
"test": "jest --verbose",
"test employee": "test Employee",
"test engineer": "test Engineer",
"test intern": "test Intern",
"test manager": "test Manager"
},
"keywords": [
"node.js",
"javascript",
"jest",
"inquirer",
"html",
"css",
"bootstrap",
"es6",
"oop",
"tdd",
"jsdoc"
],
"bugs": {
"url": "https://github.com/FilipPaskalev/Team-Profile-Generator/issues"
},
"devDependencies": {
"jsdoc": "^4.0.2",
"prettier": "^3.2.5"
},
"dependencies": {
"chalk": "^4.1.0",
"inquirer": "^8.0.0",
"jest": "^29.7.0"
}
}