forked from Hypixel-API-Reborn/hypixel-api-reborn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.58 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "hypixel-api-reborn",
"version": "10.0.0",
"description": "Feature-rich Hypixel API wrapper for Node.js",
"main": "./src/index.js",
"types": "./typings/index.d.ts",
"keywords": [
"minecraft",
"client",
"hypixel",
"api",
"hypixel-api",
"intellisense"
],
"bugs": {
"url": "https://github.com/Hypixel-API-Reborn/hypixel-api-reborn/issues"
},
"scripts": {
"eslint": "eslint src",
"eslint:fix": "eslint src --fix",
"lint:dev": "npm run eslint && npm run dtslint",
"test": "mocha tests --exit",
"test:dev": "nodenv --exec mocha tests -- --exit",
"docgen": "docgen -s src -o ../docs/master.json",
"docgen:custom": "docgen -s src --custom docs/index.yml -o ../docs/master.json",
"prepublishOnly": "npm run test:dev && npm run docgen:custom",
"dtslint": "dtslint typings"
},
"engines": {
"node": ">=14.0.0"
},
"author": "StavZ",
"dependencies": {
"node-fetch": "^2.6.1",
"object-path": "^0.11.8",
"prismarine-nbt": "^2.1.0",
"rss-parser": "^3.13.0"
},
"license": "MIT",
"readme": "https://hypixel.stavzdev.me/",
"repository": {
"url": "https://github.com/Hypixel-API-Reborn/hypixel-api-reborn"
},
"publisher": "StavZ",
"devDependencies": {
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"chai": "^4.3.4",
"dtslint": "^4.1.6",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"mocha": "^9.1.2",
"node-env-run": "^4.0.2",
"path": "^0.12.7",
"typescript": "^4.4.3"
}
}