goodreads-bookshelf
Version:
Facade of Goodreads Bookshelf
54 lines (53 loc) • 1.43 kB
JSON
{
"name": "goodreads-bookshelf",
"version": "0.2.0",
"description": "Facade of Goodreads Bookshelf",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"build": "tsc",
"test": "jest --config jestconfig.json",
"test-watch": "jest --config jestconfig.json --watch",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brombaut/goodreads-bookshelf.git"
},
"keywords": [
"Goodread",
"Bookshelf"
],
"author": "Ben Rombaut",
"license": "ISC",
"bugs": {
"url": "https://github.com/brombaut/goodreads-bookshelf/issues"
},
"homepage": "https://github.com/brombaut/goodreads-bookshelf#readme",
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node-fetch": "^2.5.7",
"@types/xml2js": "^0.4.7",
"codecov": "^3.8.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.3"
},
"files": [
"lib/**/*"
],
"dependencies": {
"dotenv": "^8.2.0",
"node-fetch": "^2.6.1",
"xml2js": "^0.4.23"
}
}