forked from fvtt-fria-ligan/twilight2000-foundry-vtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.56 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
{
"name": "dgyze",
"version": "11.0.1",
"description": "A Foundry VTT system for Delta Green (Arc Dream Publishing) using the Year Zero Engine (Free League Publishing)",
"type": "module",
"author": "JamesAlday",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/JamesAlday/dg-yze-foundry-vtt.git"
},
"bugs": {
"url": "https://github.com/JamesAlday/dg-yze-foundry-vtt.git/issues"
},
"homepage": "https://github.com/JamesAlday/dg-yze-foundry-vtt.git#readme",
"keywords": [
"Foundry",
"VTT",
"DG",
"DGYZE",
"Delta Green",
"Delta Green: Year Zero",
"Delta Green: Year Zero Engine",
"Arc Dream",
"Arc Dream Publishing",
"T2K",
"T2K4",
"Twilight 2000",
"Free League",
"Free League Publishing",
"Fria Ligan",
"RPG",
"TTRPG",
"Roleplaying Game",
"Tabletop Roleplaying Game"
],
"main": "src/dgyze.js",
"scripts": {
"dev": "cross-env NODE_ENV=development gulp build",
"dev:watch": "cross-env NODE_ENV=development gulp watch",
"build": "cross-env NODE_ENV=production gulp build",
"link": "node ./tools/link-project.js",
"link:force": "node ./tools/link-project.js --force",
"clean": "gulp clean",
"bump": "cross-env NODE_ENV=production npm run lint:fix && gulp bump --r",
"release": "gulp release",
"lint": "eslint --ext .js .",
"lint:fix": "eslint --ext .js --fix .",
"format": "prettier-eslint \"**/*.js\" --write",
"format:hbs": "prettier-eslint **/*.hbs --write --parser=glimmer",
"postinstall": "npx husky install && npx patch-package",
"upd": "npm list -g --depth=0 & npm outdated & npx npm-check -u",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"yzur": "github:Stefouch/foundry-year-zero-roller#v5.1.1"
},
"devDependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "^9.280.0",
"@types/jquery": "^3.5.16",
"@typhonjs-fvtt/eslint-config-foundry.js": "0.8.0",
"chalk": "^5.3.0",
"cross-env": "7.0.3",
"devmoji": "2.3.0",
"esbuild": "^0.15.18",
"eslint": "^8.47.0",
"eslint-config-jquery": "^3.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"execa": "^6.1.0",
"fs-extra-plus": "^0.6.0",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-less": "^5.0.0",
"gulp-yaml": "2.0.4",
"husky": "^8.0.3",
"less": "^4.2.0",
"prettier": "^3.0.1",
"prettier-eslint-cli": "^7.1.0",
"semver": "^7.5.4",
"standard-version": "^9.3.2"
}
}