UNPKG

propublica-nonprofit-explorer-sdk

Version:
68 lines (67 loc) 1.7 kB
{ "name": "propublica-nonprofit-explorer-sdk", "version": "1.0.5", "description": "SDK for ProPublica Nonprofit Explorer API", "main": "dist/index", "types": "dist/index", "exports": { ".": "./dist/index.js", "./constants": "./dist/constants/index.js", "./models": "./dist/models/index.js" }, "repository": { "type": "git", "url": "git+https://github.com/bobbrodie/propublica-nonprofit-explorer-sdk.git" }, "scripts": { "build": "rimraf dist && tsc -p ./tsconfig.json", "coverage": "npm run unit -- --coverage", "format": "prettier --write .", "format:ci": "prettier --check .", "lint": "eslint .", "lint:fix": "eslint --fix .", "prepare": "husky", "test": "npm run format && npm run lint && npm run coverage", "unit": "jest --runInBand" }, "keywords": [ "nonprofit" ], "author": "Robert Brodie <rbrodie85@gmail.com>", "license": "MIT", "engines": { "node": ">=18 <24" }, "files": [ "dist/**/*.js", "dist/**/*.d.ts" ], "devDependencies": { "@eslint/js": "9.18.0", "@types/eslint__js": "8.42.3", "@types/eslint-config-prettier": "6.11.3", "@types/jest": "29.5.14", "eslint": "9.18.0", "eslint-config-prettier": "10.0.1", "eslint-plugin-prettier": "5.2.3", "globals": "15.14.0", "husky": "9.1.7", "jest": "29.7.0", "lint-staged": "15.4.1", "prettier": "3.4.2", "rimraf": "6.0.1", "ts-jest": "29.2.5", "ts-node": "10.9.2", "typescript": "5.7.3", "typescript-eslint": "8.20.0" }, "dependencies": { "zod": "3.24.1" }, "lint-staged": { "**/*": [ "eslint --fix", "prettier --write ." ] } }