-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "populate-bibles",
"version": "1.0.0",
"description": "Populates a comprehensive directory of Bibles using data from The Digital Bible Library.",
"main": "./src/index.ts",
"scripts": {
"test": "jest",
"build": "tsup src/index.ts --dts",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"prepare": "husky install"
},
"author": "wldeh",
"license": "MIT",
"bugs": {
"url": "https://github.com/wldeh/populate-bibles/issues"
},
"homepage": "https://github.com/wldeh/populate-bibles#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"path": "^0.12.7",
"unzip-stream": "^0.3.1",
"xmldom": "^0.6.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/cheerio": "^0.22.31",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.9",
"@types/node-fetch": "^2.6.3",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.57.0",
"eslint-config-fbjs": "^4.0.0",
"husky": "^7.0.4",
"jest": "^29.5.0",
"lint-staged": "^13.0.3",
"prettier": "^2.5.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsup": "^6.5.0",
"typescript": "^4.9.5"
}
}