UNPKG

@dadjokes-io/dad-jokes

Version:
74 lines (73 loc) 1.73 kB
{ "name": "@dadjokes-io/dad-jokes", "version": "1.0.0", "description": "A npm wrapper for the dadjokes.io api", "main": "index.js", "scripts": { "test": "jest --config jestconfig.json", "build": "tsc", "format": "prettier --write \"src/**/*.ts\"", "test:coverage": "jest --config jestconfig.json --collect-coverage", "lint": "tslint -p tsconfig.json", "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint", "preversion": "npm run lint", "dev": "nodemon --config nodemon.json src/index.ts", "dev:debug": "nodemon --config nodemon.json --inspect-brk src/index.ts" }, "repository": { "type": "git", "url": "git+https://github.com/DadJokes-io/DadJokes-npm.git" }, "keywords": [ "Dad", "Jokes", "Funny", "API" ], "author": "DadJokes.io", "license": "ISC", "bugs": { "url": "https://github.com/DadJokes-io/DadJokes-npm/issues" }, "homepage": "https://github.com/DadJokes-io/DadJokes-npm#readme", "devDependencies": { "@types/jest": "^26.0.23", "coveralls": "^3.1.0", "jest": "^27.0.4", "nodemon": "^2.0.7", "prettier": "^2.3.1", "ts-jest": "^27.0.2", "ts-node": "^10.0.0", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "typescript": "^4.3.2" }, "files": [ "lib/**/*" ], "publishConfig": { "access": "public" }, "types": "lib/index.d.ts", "restartable": "rs", "ignore": [ ".git", "node_modules/", "dist/", "coverage/" ], "watch": [ "src/" ], "execMap": { "ts": "node -r ts-node/register" }, "env": { "NODE_ENV": "development" }, "ext": "js,json,ts", "dependencies": { "axios": "^0.21.1" } }