-
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 870 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 870 Bytes
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
{
"scripts": {
"build": "gulp build",
"build:watch": "gulp watch",
"link-project": "gulp link",
"clean": "gulp clean",
"clean:link": "gulp link --clean",
"lint": "eslint --ext .js,.cjs,.mjs .",
"lint:fix": "eslint --ext .js,.cjs,.mjs --fix .",
"postinstall": "husky install"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.2",
"@rollup/stream": "^3.0.1",
"@typhonjs-fvtt/eslint-config-foundry.js": "^0.8.0",
"eslint": "^8.57.1",
"fs-extra": "^11.3.2",
"gulp": "^5.0.1",
"gulp-autoprefixer": "^10.0.0",
"gulp-dart-sass": "^1.1.0",
"gulp-sourcemaps": "^3.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.3",
"rollup": "^2.79.2",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"yargs": "^18.0.0"
},
"lint-staged": {
"*.(js|cjs|mjs)": "eslint --fix",
"*.(json|yml|css)": "prettier --write"
}
}