-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
{
"name": "raknet-native",
"version": "1.2.3",
"description": "Native bindings for RakNet",
"main": "index.js",
"scripts": {
"checkEnv": "node buildChecks.js",
"clean": "cmake-js clean",
"install": "node buildChecks.js",
"postci": "node helpers/postCI.js",
"cmake": "cmake-js build --debug",
"pretest": "npm run cmake",
"prepublish": "cd helpers && node npmPublish.js",
"release": "cd helpers && node npmRelease.js",
"format": "clang-format -i src/*.cpp && clang-format -i src/*.h",
"test": "mocha --bail --exit",
"lint": "standard",
"fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/extremeheat/node-raknet-native.git"
},
"keywords": [
"raknet",
"native"
],
"author": "extremeheat",
"license": "ISC",
"bugs": {
"url": "https://github.com/extremeheat/node-raknet-native/issues"
},
"homepage": "https://github.com/extremeheat/node-raknet-native#readme",
"dependencies": {
"bindings": "^1.5.0",
"cmake-js": "^7.2.1",
"node-addon-api": "^7.0.0"
},
"devDependencies": {
"@types/node": "^14.14.31",
"bedrock-protocol": "^3.10.0",
"mocha": "^9.2.1",
"raknet-native": "file:.",
"standard": "^17.0.0",
"typescript": "^4.2.2"
},
"standard": {
"ignore": [
"raknet/**"
]
}
}