forked from MephisTools/diablo2-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 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
{
"name": "diablo2-protocol",
"version": "1.4.1",
"description": "diablo 2 packets parsing and serialization, and login sequence implementation to build clients and servers",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run validateProtocols && mocha",
"lint": "standard",
"fix": "standard --fix",
"validateProtocols": "protodef-validator data/1.14/d2gs.json && protodef-validator data/1.14/mcp.json && protodef-validator data/1.14/sid.json && protodef-validator data/1.14/bnftp.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MephisTools/diablo2-protocol.git"
},
"keywords": [
"bot",
"diablo2",
"packets"
],
"author": "Louis Beaumont",
"license": "MIT",
"bugs": {
"url": "https://github.com/MephisTools/diablo2-protocol/issues"
},
"homepage": "https://github.com/MephisTools/diablo2-protocol#readme",
"dependencies": {
"bit-buffer": "^0.2.4",
"bridge.net": "^2.0.0",
"csvtojson": "^2.0.8",
"diablo2-data": "^1.3.0",
"once-promise": "^2.0.0",
"protodef": "^1.6.9"
},
"standard": {
"ignore": [
"lib/utils/getHash.js",
"lib/utils/cdkey26.js",
"test/csharp/*"
]
},
"devDependencies": {
"argparse": "^1.0.10",
"mocha": "^5.2.0",
"protodef-validator": "^1.2.2",
"standard": "^12.0.1"
}
}