-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 962 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 962 Bytes
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
{
"name": "hyrule-compendium",
"version": "1.6.0",
"description": "The official nodejs client for the Hyrule Compendium API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build:docs": "typedoc",
"build": "tsc",
"prepublish": "npm run build --silent",
"test": "tsc && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gadhagod/Hyrule-Compendium-node-client.git"
},
"author": "Aarav Borthakur, Aarush Vailaya, and contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/gadhagod/Hyrule-Compendium-node-client/issues"
},
"homepage": "https://github.com/gadhagod/Hyrule-Compendium-node-client",
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"coffeescript": "^2.5.1",
"mocha": "^9.0.0",
"ts-expect": "^1.3.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"files": [
"dist/**/*"
]
}