-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 2.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@ethaks/fvtt-quench",
"version": "0.9.2",
"description": "Types for a Foundry VTT module enabling tests using Mocha and Chai",
"author": "Ethaks",
"contributors": [
{
"name": "Cole Schultz"
},
{
"name": "Ethaks",
"email": "ethaks@pm.me"
}
],
"type": "module",
"scripts": {
"lint": "tsc && eslint --ext .ts .",
"lint:fix": "eslint --ext .ts --fix .",
"format": "prettier --write \"./**/*.(js|mjs|ts|json|css|yml)\"",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"build": "vite build",
"serve": "vite serve",
"prerelease": "npm run build && npm run lint && npm run declaration",
"release": "standard-version",
"declaration": "tsc --project tsconfig.declaration.json",
"docs": "typedoc",
"docs:watch": "typedoc --watch",
"prepack": "npm run declaration"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ethaks/FVTT-Quench.git"
},
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Ethaks/FVTT-Quench/issues"
},
"keywords": [
"test",
"testing",
"mocha",
"chai",
"foundry-vtt",
"foundryvtt",
"foundry"
],
"types": "lib/index.d.ts",
"files": [
"lib"
],
"homepage": "https://github.com/Ethaks/FVTT-Quench#readme",
"dependencies": {
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/diff": "^5.0.3",
"@types/mocha": "^10.0.1",
"fast-check": "^3.11.0",
"wildcard-match": "^5.1.2"
},
"peerDependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "^9"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@guanghechen/rollup-plugin-copy": "^5.0.2",
"@sindresorhus/fnv1a": "^3.0.0",
"@types/fs-extra": "^11.0.1",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.2",
"diff": "^5.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unicorn": "^49.0.0",
"fs-extra": "^11.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.0.1",
"mocha": "^10.2.0",
"prettier": "^3.0.0",
"pretty-format": "^29.6.1",
"rollup-plugin-visualizer": "^5.9.0",
"standard-version": "^9.3.2",
"terser": "^5.19.1",
"typedoc": "^0.25.0",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-checker": "^0.6.1"
},
"lint-staged": {
"*.(ts|js)": "eslint --cache --fix",
"*.(json|css|yml)": "prettier --write"
},
"publishConfig": {
"access": "public"
}
}