generated from League-of-Foundry-Developers/FoundryVTT-Module-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
49 lines (49 loc) · 1.68 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
46
47
48
49
{
"name": "wild-magic-surge-5e",
"description": "FoundryVTT module for automated Wild Magic Surge Feat",
"version": "1.0.0",
"repository": "git@github.com:johnnolan/foundryvtt-wild-magic.git",
"author": "John Nolan <me@johnnolan.dev>",
"license": "MIT",
"type": "module",
"scripts": {
"build": "node ./build.js",
"build:dev": "node ./build.js && node ./build-copy.js",
"test": "jest --maxWorkers=1",
"test:coverage": "jest --ci --runInBand",
"test:watch": "jest --watch --maxWorkers=1",
"test:watchcov": "jest --watch --coverage --maxWorkers=1",
"lint:check": "eslint --ignore-path .eslintignore .",
"lint:report": "eslint --ignore-path .eslintignore --output-file eslint_report.json --format json .",
"lint:fix": "eslint --fix --ignore-path .eslintignore ."
},
"devDependencies": {
"@babel/eslint-parser": "7.26.5",
"@babel/preset-env": "7.26.7",
"@jest/types": "29.6.3",
"@league-of-foundry-developers/foundry-vtt-types": "9.280.1",
"@types/jest": "29.5.14",
"@types/node": "22.12.0",
"@typescript-eslint/eslint-plugin": "8.22.0",
"@typescript-eslint/parser": "8.22.0",
"@typhonjs-fvtt/eslint-config-foundry.js": "0.8.0",
"babel-jest": "29.7.0",
"esbuild": "0.24.2",
"eslint": "9.19.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "5.2.3",
"handlebars": "4.7.8",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-junit": "16.0.0",
"jquery": "3.7.1",
"jshint": "2.13.6",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"typescript": "5.7.3"
},
"jest-junit": {
"outputDirectory": "./test-results/junit",
"outputName": "results.xml"
}
}