-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 952 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
32
33
34
35
{
"name": "google-books-api-cli",
"version": "1.0.0",
"description": "8th Light Technical Assessment.A command line application that allows you to use the Google Books API to search for books and construct a reading list.",
"main": "index.js",
"bin": {
"google-books-cli": "./index.js"
},
"scripts": {
"test": "jest",
"watch": "jest --watchAll --verbose",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fi-ya/google-books-api-cli.git"
},
"keywords": [],
"author": "Safia Ali ",
"license": "ISC",
"bugs": {
"url": "https://github.com/fi-ya/google-books-api-cli/issues"
},
"homepage": "https://github.com/fi-ya/google-books-api-cli#readme",
"dependencies": {
"@types/jest": "^26.0.23",
"axios": "^0.22.0",
"boxen": "^5.0.1",
"chalk": "^4.1.1",
"prompt-sync": "^4.1.6"
},
"devDependencies": {
"jest": "^27.0.4"
}
}