-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.34 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
{
"author": "hozlucas28",
"bin": {
"fcla": "./dist/index.js"
},
"bugs": {
"url": "https://github.com/hozlucas28/FCLA-CLI/issues"
},
"dependencies": {
"picocolors": "^1.0.0",
"prompts": "^2.4.2"
},
"description": "Repository of a CLI for FCLA community",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"homepage": "https://github.com/hozlucas28/FCLA-CLI#readme",
"keywords": [
"FCLA",
"CLI",
"Community",
"Arma 3",
"Arma III"
],
"license": "AGPL-3.0",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"main": "./dist/index.js",
"name": "fcla-cli",
"repository": {
"type": "git",
"url": "git+https://github.com/hozlucas28/FCLA-CLI.git"
},
"scripts": {
"dev": "clear && tsc --watch",
"link:cli": "clear && pnpm unlink --global && pnpm link --global",
"prepare": "husky install",
"start": "clear && tsc && node --env-file=.env.local ./dist/index.js",
"test": "clear && jest",
"test:unit": "clear && jest --testPathPattern='/src/__tests__/unit/.*\\.spec\\.ts$'"
},
"version": "1.0.0"
}