-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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
{
"private": true,
"name": "art-gallery",
"description": "Art Gallery allows you to finally show off all the character art you have collected!",
"license": "MIT License",
"homepage": "https://github.com/FloRad/art-gallery/",
"repository": {
"type": "git",
"url": "https://github.com/FloRad/art-gallery/"
},
"bugs": {
"url": "https://github.com/FloRad/art-gallery/issues"
},
"contributors": [
{
"name": "FloRad",
"email": "[email protected]"
}
],
"type": "module",
"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 .",
"lint:fix": "eslint --ext .js,.cjs --fix .",
"format": "prettier --write \"./**/*.(js|cjs|json|yml|scss)\"",
"postinstall": "husky install"
},
"devDependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "^9.249.4",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/stream": "^2.0.0",
"@typhonjs-fvtt/eslint-config-foundry.js": "^0.8.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"fs-extra": "^10.0.1",
"gulp": "^4.0.2",
"gulp-dart-sass": "^1.0.2",
"gulp-sourcemaps": "^3.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"rollup": "^2.68.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"yargs": "^17.3.1"
},
"lint-staged": {
"*.(js|cjs)": "eslint --fix",
"*.(json|yml|scss)": "prettier --write"
}
}