-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "schematic2schem",
"version": "1.2.2",
"description": "Converts .schematic files (< 1.13) to .schem files (1.13+)",
"main": "dist/index.js",
"scripts": {
"build": "rollup -c",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'test/**/*.ts'",
"start": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/McJeffr/schematic2schem.git"
},
"keywords": [
"minecraft",
"nbt",
"schem",
"schematic",
"schematic2schem"
],
"files": [
"dist"
],
"author": "McJeffr",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.31",
"chai": "^4.3.3",
"mocha": "^8.3.1",
"rollup": "^2.39.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"dependencies": {
"prismarine-nbt": "^1.4.0"
}
}