-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 841 Bytes
/
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
{
"name": "team-profile-generator",
"version": "1.0.0",
"description": "Application that collects information about team members using command line prompts and then generates an HTML document displaying member profiles.",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "jest",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jxhnkndl/team-profile-generator.git"
},
"author": "J.K. Royston",
"license": "MIT",
"bugs": {
"url": "https://github.com/jxhnkndl/team-profile-generator/issues"
},
"homepage": "https://github.com/jxhnkndl/team-profile-generator#readme",
"dependencies": {
"inquirer": "^7.3.3",
"js-beautify": "^1.13.5",
"outdent": "^0.8.0"
},
"devDependencies": {
"jest": "^26.6.3"
}
}