-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
76 lines (76 loc) · 2.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "flying-squid",
"description": "A minecraft server written in node.js",
"version": "1.8.0",
"main": "index.js",
"author": "mhsjlw <[email protected]>",
"contributors": [
{
"name": "rom1504",
"email": "[email protected]"
}
],
"bin": "app.js",
"scripts": {
"prepublishOnly": "cp docs/README.md README.md",
"lint": "standard test/*.test.js src/**/*.js src/**/**/*.js src/*.js examples/*.js *.js",
"fix": "standard --fix test/*.test.js src/**/*.js src/**/**/*.js src/*.js examples/*.js *.js",
"mocha_test": "mocha --reporter spec --timeout 3000 --exit",
"test": "npm run mocha_test",
"pretest": "npm run lint"
},
"keywords": [
"browser",
"minecraft server",
"java minecraft server"
],
"license": "MIT",
"engines": {
"node": ">=8"
},
"dependencies": {
"change-case": "^4.1.2",
"colors": "1.4.0",
"diamond-square": "^1.2.0",
"emit-then": "^2.0.0",
"event-promise": "^0.0.1",
"exit-hook": "^2.2.1",
"flatmap": "^0.0.3",
"long": "^5.1.0",
"minecraft-protocol": "^1.44.0",
"moment": "^2.10.6",
"needle": "^2.5.0",
"node-gzip": "^1.1.2",
"prismarine-chunk": "^1.34.0",
"prismarine-entity": "^2.2.0",
"prismarine-item": "^1.14.0",
"prismarine-nbt": "^2.2.1",
"prismarine-provider-anvil": "^2.7.0",
"prismarine-registry": "^1.7.0",
"prismarine-windows": "^2.8.0",
"prismarine-world": "^3.6.2",
"random-seed": "^0.3.0",
"range": "^0.0.3",
"readline": "^1.3.0",
"spiralloop": "^1.0.2",
"uuid-1345": "^1.0.1",
"vec3": "^0.1.6",
"yargs": "^17.0.1"
},
"repository": {
"type": "git",
"url": "git://github.com/PrismarineJS/flying-squid.git"
},
"bugs": {
"url": "http://github.com/PrismarineJS/flying-squid/issues"
},
"devDependencies": {
"expect": "^29.1.2",
"flying-squid": "file:.",
"longjohn": "^0.2.12",
"minecraft-wrap": "^1.2.3",
"mineflayer": "^4.17.0",
"mocha": "^10.0.0",
"standard": "^17.0.0"
}
}