uspto-patents-view-api
Version:
An api wrapper for the patent view api run by the uspto
79 lines (78 loc) • 2.13 kB
JSON
{
"name": "uspto-patents-view-api",
"version": "0.0.13",
"description": "An api wrapper for the patent view api run by the uspto",
"main": "src/index.js",
"scripts": {
"test": "mocha -r ts-node/register \"src/**/*.spec.ts\"",
"build": "tsc -p .",
"compile": "tsc",
"clean": "tsc --build --clean && rm -r ./types",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prettier": "prettier --write src/**/*.ts",
"prepublishOnly": "npm run build",
"version": "auto-changelog -p && git add HISTORY.md",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"npm run lint:fix"
],
"package.json": "prettier --write",
"*.md": "prettier --write"
},
"auto-changelog": {
"output": "HISTORY.md",
"template": "keepachangelog",
"unreleased": true,
"commitLimit": false
},
"keywords": [
"uspto",
"patents",
"patent-view",
"api-wrapper",
"inventors",
"uspto-api-wrapper",
"patent-api-wrapper",
"patent-view-api-wrapper"
],
"author": "Dylan Steele",
"license": "MIT",
"devDependencies": {
"@types/chai": "~4.3.0",
"@types/got": "^9.6.12",
"@types/lodash": "^4.14.172",
"@types/mocha": "~9.1.0",
"@types/node": "^17.0.0",
"@types/sinon": "~10.0.2",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"auto-changelog": "^2.3.0",
"chai": "~4.3.4",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"lint-staged": "^12.0.2",
"mocha": "~9.1.1",
"prettier": "^2.3.2",
"sinon": "~12.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"dependencies": {
"got": "^11.8.2",
"lodash": "^4.17.21",
"rxjs": "~7.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dills122/patent-view-api"
},
"bugs": {
"url": "https://github.com/dills122/patent-view-api/issues"
}
}