-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.38 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": "your-module-name",
"version": "1.0.0",
"description": "A Foundry Module Template",
"main": "index.js",
"author": {
"name": "YourName",
"email": "[email protected]"
},
"url": "https://www.github.com/YourName/YourRepoURL",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://www.github.com/YourName/YourRepoURL"
},
"maintainers": [
{
"name": "YourName",
"email": "[email protected]"
}
],
"type": "module",
"scripts": {
"build": "gulp build",
"build:watch": "gulp watch",
"devexport": "gulp devexport",
"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 .",
"format": "prettier --write \"./**/*.(js|cjs|mjs|json|yml|scss)\"",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:ci": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --ci --reporters=default --reporters=jest-junit",
"postinstall": "husky install",
"release": "commit-and-tag-version",
"release:dry": "commit-and-tag-version --dry"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/stream": "^3.0.0",
"@typhonjs-fvtt/eslint-config-foundry.js": "^0.8.0",
"commit-and-tag-version": "^12.2.0",
"cross-env": "^7.0.3",
"del": "^7.1.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-prettier": "^5.0.0",
"fs-extra": "^11.1.1",
"gulp": "^4.0.2",
"gulp-dart-sass": "^1.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-zip": "^6.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"rollup": "^2.79.1",
"rollup-plugin-copy": "^3.5.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"yargs": "^17.7.2"
},
"lint-staged": {
"*.(js|cjs|mjs)": "eslint --fix",
"*.(json|yml|scss)": "prettier --write"
},
"dependencies": {
"eslint-plugin-jsdoc": "^46.9.1",
"typescript": "^5.3.3"
},
"commit-and-tag-version": {
"skip": {
"commit": true,
"tag": true
}
}
}