-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
34 lines (34 loc) · 914 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
{
"name": "dungeon-draw",
"description": "Dungeon Draw module for Foundry VTT",
"license": "MIT",
"author": "mcglintlock",
"type": "module",
"dependencies": {
"2d-dungeon": "0.0.7",
"dungeoneer": "^2.1.5",
"jsts": "^2.8.1",
"rot-js": "^2.2.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@typhonjs-fvtt/eslint-config-foundry.js": "^0.8.0",
"eslint": "^8.4.0",
"husky": "^7.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rollup": "^4.13.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-terser": "^0.4.4"
},
"scripts": {
"build": "rollup --config",
"check": "prettier --check .",
"lint": "eslint src",
"precommit": "npm run validate",
"prepare": "husky install",
"pretty": "prettier --write .",
"validate": "npm-run-all check lint",
"watch": "rollup --config --watch"
}
}