generated from comuns-rpgmaker/typescript-plugin-archetype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.37 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
{
"name": "schach-fog-of-war",
"version": "1.0.0",
"description": "RPG Maker MZ Typescript Plugin Archetype",
"namespace": "Schach.FogOfWar",
"testProjectDir": "../..",
"scripts": {
"lint": "eslint .",
"prebuild": "mz-mtdt -i ./plugin-metadata.yaml -o dist/annotations.js",
"build": "rollup -c",
"test": "ts-node node_modules/jasmine/bin/jasmine",
"coverage": "nyc -r lcov -e .ts -x \"spec/*\" npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/comuns-rpgmaker/schach-fog-of-war"
},
"keywords": [
"RMMZ"
],
"author": "Comuns",
"license": "Zlib",
"devDependencies": {
"@comuns-rpgmaker/plugin-metadata": "^0.2.5",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^5.0.2",
"@types/jasmine": "^3.10.6",
"@types/node": "^14.18.21",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.32.0",
"glslify": "^7.1.1",
"jasmine": "^3.99.0",
"nyc": "^15.1.0",
"rmmz": "git+https://[email protected]/niokasgami/rpg-maker-mz-typescript",
"rollup": "^2.76.0",
"rollup-plugin-external-globals": "^0.6.1",
"rollup-plugin-glslify": "^1.3.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^9.1.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
}
}