-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
32 lines (32 loc) · 918 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
{
"name": "special-dice-roller",
"version": "1.0.0",
"main": "dist/main.js",
"author": "Bernhard Posselt",
"license": "AGPL",
"private": true,
"dependencies": {
"mustache": "^4.2.0"
},
"scripts": {
"test": "./node_modules/.bin/jest",
"build": "./node_modules/.bin/webpack --mode production",
"update": "rm -rf /home/bernhard/.local/share/FoundryVTT/Data/modules/special-dice-roller/* && cp -R ./{module.json,public,dist} /home/bernhard/.local/share/FoundryVTT/Data/modules/special-dice-roller/",
"clean": "rm -rf dist/"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/jquery": "^3.5.30",
"@types/mustache": "^4.2.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}