UNPKG

sv443-joke-api

Version:
63 lines (62 loc) 1.56 kB
{ "name": "sv443-joke-api", "version": "0.1.0", "description": "JavaScript wrapper for Sv443's Joke API", "author": { "name": "Sahithyan", "email": "sahithyan2701@gmail.com" }, "types": "dist/types/index.d.ts", "main": "dist/index", "unpkg": "web/index.js", "files": [ "dist", "web" ], "repository": { "type": "git", "url": "https://github.com/sahithyandev/sv433-joke-api-js-wrapper.git" }, "scripts": { "docs": "typedoc", "type-check": "tsc --noEmit", "type-check:watch": "npm run type-check -- --watch", "watch": "webpack --watch", "build:types": "tsc --emitDeclarationOnly", "build": "npm run build:types && npm run build:node && npm run build:browser", "build:node": "webpack --env TARGET=node", "build:browser": "webpack --env TARGET=web", "test": "jest", "pre": "tsc && npm version patch", "prepack": "npm run build" }, "keywords": [ "api", "joke-api" ], "license": "ISC", "devDependencies": { "@babel/core": "^7.12.3", "@babel/preset-env": "^7.12.1", "@babel/preset-typescript": "^7.12.1", "@types/babel-types": "^7.0.9", "@types/jest": "^26.0.15", "@types/node": "^14.14.6", "@types/node-fetch": "^2.5.7", "babel-jest": "^26.6.3", "babel-loader": "^8.2.1", "copy-webpack-plugin": "^6.3.1", "jest": "^26.6.3", "ts-loader": "^8.0.11", "ts-node": "^9.0.0", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "typedoc": "^0.17.0-3", "typescript": "^4.0.5", "webpack": "^5.4.0", "webpack-cli": "^4.2.0" }, "dependencies": { "node-fetch": "^2.6.1" } }