-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.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
{
"private": true,
"name": "foundryvtt-devMode",
"version": "1.13.0",
"description": "A module with some tools to help enable Foundry VTT package developers.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/League-of-Foundry-Developers/foundryvtt-devMode"
},
"bugs": {
"url": "https://github.com/League-of-Foundry-Developers/foundryvtt-devMode/issues"
},
"scripts": {
"build": "gulp build",
"build:watch": "gulp watch",
"clean": "gulp clean",
"lint": "eslint --ext .js .",
"lint:fix": "eslint --ext .js --fix .",
"format": "prettier --write \"./**/*.(js|json|scss)\"",
"prepare": "husky install"
},
"devDependencies": {
"@typhonjs-fvtt/eslint-config-foundry.js": "^0.8.0",
"babel-eslint": "^10.1.0",
"chalk": "^4.1.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"fs-extra": "^10.0.0",
"gulp": "^4.0.2",
"gulp-dart-sass": "^1.0.2",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"sass": "^1.37.5"
},
"lint-staged": {
"*.(js)": "eslint --fix",
"*.(json|scss)": "prettier --write"
},
"dependencies": {}
}