This repository has been archived by the owner on Aug 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.67 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
59
{
"name": "hive-api",
"version": "1.14.2",
"description": "a wrapper for the hivemc api",
"main": "./build/lib/main.js",
"types": "./build/lib/main.d.ts",
"directories": {
"doc": "docs",
"example": "examples",
"lib": "lib",
"test": "test"
},
"dependencies": {
"node-fetch": "^1.7.3",
"tslib": "^1.9.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/lodash": "^4.14.134",
"@types/mocha": "^2.2.48",
"chai": "^4.2.0",
"mocha": "^4.1.0",
"rewire": "^2.5.2",
"tap": "^11.1.5",
"typedoc": "^0.14.2",
"typescript": "^3.5.1",
"uglify-es": "^3.3.9",
"uglify-es-webpack-plugin": "^0.10.0",
"webpack": "^3.12.0",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"husky": "^3.0.9"
},
"scripts": {
"start": "tsc && node index.js",
"test": "tsc && mocha build/test/**/*.test.js",
"build": "tsc",
"lint": "prettier --write lib/**/*.ts",
"docs": "typedoc --mode modules --out docs --name \"Hive-Api-Node\" --target ES6 --mode file --excludeExternals -gaID UA-60277501-9 -gaSite auto -theme typedoctheme lib",
"docs-full": "typedoc --out docs --name \"Hive-Api-Node\" --target ES6 --mode file --includeDeclarations",
"prepublishOnly": "npm run build && webpack && npm run docs",
"webpack-defaults": "webpack-defaults"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lergin/hive-api.git"
},
"author": "Malte Laukötter",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lergin/hive-api/issues"
},
"homepage": "http://hive-api.lergin.de"
}