-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
42 lines (42 loc) · 1021 Bytes
/
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
{
"name": "prismarine-physics",
"version": "1.9.0",
"description": "Provide the physics engine for minecraft entities",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --reporter spec --exit",
"pretest": "npm run lint",
"lint": "standard",
"fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PrismarineJS/prismarine-physics.git"
},
"keywords": [
"physics",
"prismarine",
"minecraft"
],
"author": "Romain Beaumont",
"license": "MIT",
"bugs": {
"url": "https://github.com/PrismarineJS/prismarine-physics/issues"
},
"homepage": "https://github.com/PrismarineJS/prismarine-physics#readme",
"devDependencies": {
"expect": "^27.3.1",
"mocha": "^10.0.0",
"prismarine-block": "^1.7.3",
"prismarine-physics": "file:./",
"standard": "^17.0.0"
},
"dependencies": {
"minecraft-data": "^3.0.0",
"prismarine-nbt": "^2.0.0",
"vec3": "^0.1.7"
}
}