-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"name": "rally-point",
"private": true,
"version": "3.0.0",
"description": "A server for forwarding UDP packets between two peers.",
"main": "index.js",
"type": "module",
"engines": {
"node": ">= 20.0.0"
},
"scripts": {
"autotest": "mocha --watch -R spec --recursive test/",
"build": "node build.js",
"lint": "eslint --ext .js ./ && echo Hooray || echo Please fix",
"posttest": "npm run lint",
"test": "mocha -R spec --recursive test/"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/tec27/rally-point.git"
},
"keywords": [
"rally-point",
"starcraft",
"bw",
"shieldbattery",
"manner-pylon"
],
"author": "Travis Collins <[email protected]> (http://tec27.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tec27/rally-point/issues"
},
"homepage": "https://github.com/tec27/rally-point#readme",
"dependencies": {
"nconf": "^0.12.1"
},
"devDependencies": {
"chai": "^5.1.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.0",
"mocha": "^10.1.0",
"prettier": "^3.0.0"
},
"packageManager": "[email protected]+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}