-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "@mimickal/halo-query",
"version": "0.0.0",
"description": "A library and command-line application for querying Gearbox Halo multiplayer master servers",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"gypfile": true,
"bin": {
"halo-query": "./lib/cli.js"
},
"scripts": {
"build": "npm run build:gyp && npm run build:tsc",
"build:gyp": "node-gyp rebuild",
"build:tsc": "tsc",
"clean": "rm -r lib/* build/*",
"prepack": "npm run clean && npm run build && npm test",
"prepublishOnly": "npm test",
"test": "echo 'No tests yet!'",
"test-cli": "npm run build:tsc && node ./lib/cli.js"
},
"keywords": [
"halo-ce",
"halo",
"games",
"gamespy",
"query"
],
"author": "Mimickal <[email protected]>",
"license": "AGPL-3.0",
"devDependencies": {
"@types/node": "^20.4.4",
"node-gyp": "^9.4.0",
"typescript": "^5.1.6",
"utility-types": "^3.10.0"
},
"dependencies": {
"commander": "^11.0.0",
"node-addon-api": "^7.0.0"
}
}