-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.51 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": "commander",
"description": "Command launcher for running and registering commands executable solely by keyboard",
"license": "MIT",
"homepage": "",
"repository": {
"type": "git",
"url": "https://github.com/ccjmk/commander"
},
"bugs": {
"url": "https://github.com/ccjmk/commander/issues"
},
"contributors": [
{
"name": "Iñaki 'ccjmk' Guastalli"
},
{
"name": "Miguel Galante"
}
],
"scripts": {
"build": "gulp build",
"build:watch": "gulp watch",
"link-project": "gulp link",
"clean": "gulp clean",
"clean:link": "gulp link --clean",
"lint": "eslint --ext .ts,.js .",
"lint:fix": "eslint --ext .ts,.js --fix .",
"format": "prettier --write \"./**/*.(ts|js|json|yml|css)\"",
"postinstall": "husky install"
},
"devDependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "^9.242.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"fs-extra": "^10.0.0",
"gulp": "^4.0.2",
"husky": "^7.0.4",
"lint-staged": "^12.3.2",
"prettier": "^2.5.1",
"rollup": "^2.66.1",
"tslib": "^2.3.1",
"typescript": "^4.5.5",
"yargs": "^17.3.1"
},
"lint-staged": {
"*.(ts|js)": "eslint --fix",
"*.(json|yml|css)": "prettier --write"
}
}