-
-
Notifications
You must be signed in to change notification settings - Fork 355
/
package.json
36 lines (36 loc) · 968 Bytes
/
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
{
"name": "5e-database",
"version": "1.0.0",
"description": "Database for 5e-srd-api",
"engines": {
"node": "20.x"
},
"scripts": {
"lint": "eslint . --config eslint.config.mjs",
"test": "jest -c jest.config.js",
"build:ts": "tsc --project scripts",
"db:refresh": "npm run build:ts && node scripts/built/dbRefresh.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bagelbits/5e-database.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/bagelbits/5e-database/issues"
},
"homepage": "https://github.com/bagelbits/5e-database#readme",
"devDependencies": {
"@semantic-release/github": "^11.0.1",
"@types/node": "^22.9.3",
"eslint": "^9.15.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-json": "^4.0.1",
"glob": "^11.0.0",
"jest": "^29.7.0",
"redis": "^4.7.0",
"semantic-release": "^24.2.0",
"typescript": "^5.6.3"
}
}