forked from PrismarineJS/flying-squid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.94 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
{
"name": "flying-squid",
"description": "A minecraft server written in node.js",
"version": "1.5.0",
"main": "index.js",
"author": "mhsjlw <mhsjlw@users.noreply.github.com>",
"contributors": [
{
"name": "rom1504",
"email": "romain.rom1@gmail.com"
}
],
"bin": {
"flying-squid": "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": [],
"license": "MIT",
"engines": {
"node": ">=8"
},
"dependencies": {
"colors": "1.4.0",
"diamond-square": "^1.2.0",
"emit-then": "^2.0.0",
"event-promise": "^0.0.1",
"flatmap": "^0.0.3",
"long": "^5.1.0",
"minecraft-data": "^3.0.0",
"minecraft-protocol": "^1.15.0",
"mkdirp": "^2.1.3",
"moment": "^2.10.6",
"needle": "^2.5.0",
"node-gzip": "^1.1.2",
"prismarine-chunk": "^1.20.1",
"prismarine-entity": "^2.0.0",
"prismarine-item": "^1.5.0",
"prismarine-nbt": "^2.0.0",
"prismarine-provider-anvil": "^2.3.0",
"prismarine-windows": "^2.0.0",
"prismarine-world": "^3.0.0",
"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.0.0",
"mocha": "^10.0.0",
"standard": "^17.0.0"
}
}