-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 778 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 778 Bytes
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
{
"name": "book-api-project",
"version": "1.0.0",
"description": "A Node.js web server that both hosts static files such as HTML, and hosts a backend web API from a JSON file about books.",
"main": "server/server.js",
"scripts": {
"start": "node server/server.js",
"test": "echo \"Error: no test specified\"",
"pretest": "eslint server --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EmmaD9/book-api-project.git"
},
"author": "Emma Duprey",
"license": "ISC",
"bugs": {
"url": "https://github.com/EmmaD9/book-api-project/issues"
},
"homepage": "https://github.com/EmmaD9/book-api-project#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.2",
"globals": "^17.4.0"
}
}