forked from PaladinsDev/paladins.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.48 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
60
61
{
"name": "pe-paladins.js",
"version": "4.0.1",
"description": "A strongly typed fork of paladins.js, used by Paladins Edge",
"keywords": [
"paladins",
"api",
"hirez",
"hi",
"rez",
"hi-rez"
],
"main": "lib/paladins.js",
"types": "lib/paladins.d.ts",
"scripts": {
"compile": "tsc",
"docs": "node_modules/.bin/typedoc --options ./typedoc.json",
"prepublish": "npm run compile",
"test": "cross-env TS_NODE_FILES=true mocha -r ts-node/register ./test/*.ts --timeout 20000",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tusharlock10/paladins.js.git"
},
"author": "tusharlock10",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tusharlock10/paladins.js/issues"
},
"homepage": "https://github.com/tusharlock10/paladins.js#readme",
"files": [
"/lib",
"LICENSE",
"README.md"
],
"dependencies": {
"axios": "^0.27.2",
"cache-driver": "^1.0.1",
"dayjs": "^1.11.10",
"md5": "^2.3.0"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/jest": "^27.5.2",
"@types/md5": "^2.3.5",
"@types/node": "^17.0.45",
"@types/promise-fs": "^2.1.5",
"chai": "^4.4.1",
"cross-env": "^7.0.3",
"eledoc": "^0.2.1",
"husky": "^8.0.3",
"jest": "^28.1.3",
"mocha": "^10.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.2",
"typedoc": "^0.22.18",
"typescript": "^4.7.4"
}
}