-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.66 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"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 <[email protected]>",
"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 ."
]
}
}