-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
69 lines (69 loc) · 2.2 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
{
"name": "fxmaster",
"version": "4.1.0",
"description": "Adds various particle and filter effects.",
"private": true,
"scripts": {
"build": "run-s clean:files build:rollup build:packs",
"build:rollup": "rollup -c",
"build:packs": "fvtt package pack --type=Module --id=fxmaster --compendiumName=macros --inputDirectory=./packs/macros --outputDirectory=./dist/packs",
"watch": "run-p watch:rollup watch:packs",
"watch:rollup": "rollup -c -w",
"watch:packs": "nodemon --watch ./packs -x 'npm run build:packs'",
"link-package": "node ./tools/link-package.mjs",
"clean": "run-p clean:files clean:link",
"clean:files": "rimraf dist",
"clean:link": "node ./tools/link-package.mjs --clean",
"lint": "eslint --ext .js,.mjs .",
"lint:fix": "eslint --ext .js,.mjs --fix .",
"format": "prettier --write \"./**/*.(js|mjs|json|css|yml)\"",
"release": "standard-version",
"postinstall": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ghost-fvtt/fxmaster.git"
},
"contributors": [
{
"name": "Emmanuel Ruaud",
"discord": "U~man"
},
{
"name": "Johannes Loher",
"email": "[email protected]",
"discord": "ghost#2000"
}
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/ghost-fvtt/fxmaster/issues"
},
"homepage": "https://github.com/ghost-fvtt/fxmaster#readme",
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@foundryvtt/foundryvtt-cli": "1.0.4",
"@guanghechen/rollup-plugin-copy": "6.0.3",
"@rollup/plugin-terser": "0.4.4",
"@typhonjs-fvtt/eslint-config-foundry.js": "0.8.0",
"eslint": "8.57.1",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "4.2.1",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"nodemon": "3.1.9",
"npm-run-all2": "7.0.2",
"prettier": "2.8.8",
"rimraf": "6.0.1",
"rollup": "4.32.1",
"rollup-plugin-string": "3.0.0",
"rollup-plugin-styler": "1.8.0",
"standard-version": "9.5.0",
"stringify-package": "1.0.1"
},
"lint-staged": {
"*.(js|mjs)": "eslint --fix",
"*.(json|css|yml)": "prettier --write"
}
}