forked from 5e-bits/5e-database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1017 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
37
{
"name": "5e-database",
"version": "1.0.0",
"description": "Database for 5e-srd-api",
"engines": {
"node": "20.x"
},
"scripts": {
"lint": "eslint . --ext .js,.json",
"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": "^10.0.3",
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.57.0",
"eslint-plugin-json": "^3.1.0",
"glob": "^10.3.15",
"jest": "^29.7.0",
"redis": "^4.6.13",
"semantic-release": "^23.1.1",
"typescript": "^5.4.5"
}
}