forked from 5e-bits/5e-database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1014 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": "18.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": "^8.0.2",
"@types/node": "^17.0.45",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.9.0",
"eslint-plugin-json": "^3.1.0",
"glob": "^10.3.3",
"jest": "^27.5.1",
"redis": "^4.2.0",
"semantic-release": "^21.0.1",
"typescript": "^4.9.3"
}
}