-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 916 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
{
"name": "molangjs",
"version": "1.6.5",
"description": "MoLang Parser for Javascript",
"main": "dist/molang.cjs.js",
"module": "dist/molang.esm.js",
"types": "types/index.d.ts",
"scripts": {
"test": "node ./tests.js",
"build": "rollup -c",
"watch": "rollup -c --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JannisX11/MolangJS.git"
},
"keywords": [
"molang",
"minecraft",
"snowstorm",
"blockbench"
],
"author": "JannisX11",
"license": "MIT",
"bugs": {
"url": "https://github.com/JannisX11/MolangJS/issues"
},
"files": [
"dist/*.js",
"syntax/*.js",
"src/*.js",
"types/*.ts"
],
"homepage": "https://github.com/JannisX11/MolangJS#readme",
"devDependencies": {
"chalk": "^4.0.0",
"rollup": "^2.28.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2"
}
}