generated from PrismarineJS/prismarine-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.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
{
"name": "prismarine-rng",
"version": "1.1.1",
"description": "Collection of utilities to work with minecraft RNG.",
"main": "index.js",
"scripts": {
"test": "jest --verbose",
"pretest": "npm run lint",
"lint": "standard",
"fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PrismarineJS/prismarine-rng.git"
},
"keywords": [
"prismarine",
"rng",
"seed",
"java",
"random"
],
"author": "Karang",
"license": "MIT",
"bugs": {
"url": "https://github.com/PrismarineJS/prismarine-rng/issues"
},
"standard": {
"ignore": [
"lib/wasm/",
"examples/biomemap/"
]
},
"homepage": "https://github.com/PrismarineJS/prismarine-rng#readme",
"dependencies": {
"minecraft-data": "^2.74.0",
"prismarine-item": "^1.5.0"
},
"devDependencies": {
"mineflayer": "^3.0.0",
"canvas": "^2.6.1",
"babel-eslint": "^10.1.0",
"jest": "^27.0.4",
"prismarine-rng": "file:.",
"standard": "^16.0.3"
}
}