forked from PrismarineJS/flying-squid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.56 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.56 KB
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
{
"name": "flying-squid",
"description": "A minecraft server written in node.js",
"version": "1.1.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": {
"prepare": "require-self",
"lint": "standard test/*.test.js src/**/*.js src/**/**/*.js src/*.js examples/*.js *.js",
"test": "jest --verbose --runInBand"
},
"keywords": [],
"license": "MIT",
"engines": {
"node": ">=8"
},
"dependencies": {
"diamond-square": "^1.1.0",
"emit-then": "^2.0.0",
"event-promise": "^0.0.1",
"flatmap": "^0.0.3",
"minecraft-data": "^2.26.0",
"minecraft-protocol": "^1.5.2",
"mkdirp": "^0.5.1",
"moment": "^2.10.6",
"prismarine-chunk": "^1.9.0",
"prismarine-entity": "^0.2.0",
"prismarine-item": "^1.0.1",
"prismarine-provider-anvil": "^2.1.0",
"prismarine-windows": "^1.0.1",
"prismarine-world": "^2.1.0",
"random-seed": "^0.3.0",
"range": "^0.0.3",
"request": "^2.83.0",
"request-promise": "^4.1.0",
"spiralloop": "^1.0.2",
"uuid-1345": "^0.99.6",
"vec3": "^0.1.3"
},
"repository": {
"type": "git",
"url": "git://github.com/PrismarineJS/flying-squid.git"
},
"bugs": {
"url": "http://github.com/PrismarineJS/flying-squid/issues"
},
"devDependencies": {
"jest": "^22.1.4",
"longjohn": "^0.2.12",
"mineflayer": "^2.6.1",
"require-self": "^0.2.1",
"standard": "^11.0.1"
}
}