-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.36 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
{
"name": "fvtt-hidden-initiative",
"version": "0.0.1",
"private": true,
"description": "Customizes the Foundry VTT combat tracker to hide initiative rolls.",
"main": "index.js",
"scripts": {
"build": "tsc",
"clean": "rimraf .tsbuildinfo module/**/*.js module/strings",
"format": "prettier --write \"./**/*.{js,json,md,ts}\"",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"test": "jest --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sfuqua/fvtt-hidden-intiative.git"
},
"author": "Steven Fuqua",
"license": "MIT",
"bugs": {
"url": "https://github.com/sfuqua/fvtt-hidden-intiative/issues"
},
"homepage": "https://github.com/sfuqua/fvtt-hidden-intiative#readme",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/jquery": "^3.5.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"foundry-pc-types": "gitlab:foundry-projects/foundry-pc/foundry-pc-types",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"typescript": "~4.2.4"
}
}