-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.05 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
{
"private": true,
"name": "combatreadythemes",
"version": "1.3.0",
"description": "A pack of basic themes for the Combat Ready! module",
"scripts": {
"package": "gulp clean && gulp build && gulp package",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --collect-coverage",
"build": "gulp build",
"buildlink": "gulp build && gulp link",
"build:watch": "gulp watch",
"clean": "gulp clean && gulp link --clean",
"update": "npm install --save-dev @league-of-foundry-developers/foundry-vtt-types",
"lint": "eslint --ext .ts,.js,.vue .",
"lintfix": "eslint --fix --ext .ts,.js,.vue ./src",
"prettier-format": "prettier --config .prettierrc --write \"./src/**/*.(ts|js|json|scss|css)\""
},
"author": "Teshynil",
"license": "GNU3",
"devDependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "^9.238.1",
"@types/jest": "^27.0.3",
"@types/jquery": "^3.5.11",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"@typhonjs-fvtt/eslint-config-foundry.js": "^0.8.0",
"archiver": "^5.3.0",
"chalk": "^4.1.2",
"eslint": "^8.5.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-jquery": "^3.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"fs-extra": "^10.0.0",
"gulp": "^4.0.2",
"gulp-changed": "^4.0.3",
"gulp-eslint": "^6.0.0",
"gulp-git": "^2.10.1",
"gulp-less": "^5.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"json-stringify-pretty-compact": "^3.0.0",
"prettier": "^2.5.1",
"sass": "^1.45.1",
"ts-jest": "^27.1.2",
"yargs": "^17.3.1"
},
"lint-staged": {
"*.(ts|js)": "eslint --fix",
"*.(json|scss)": "prettier --write"
},
"dependencies": {
"typescript": "^4.5.4"
},
"jest": {
"transform": {
"^.+\\.(ts|tsx|js|jsx)?$": "ts-jest"
}
}
}