-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 2.25 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
{
"name": "nodecg-io-cli",
"version": "0.5.0",
"description": "The CLI to install and manage nodecg-io installations. Also helps you with nodecg-io bundle related development.",
"main": "index.js",
"scripts": {
"build": "tsc -b",
"run": "tsc -b && node build/index.js",
"watch": "tsc -b -w",
"test": "jest --silent",
"watchTest": "jest --watch --silent",
"lint": "eslint src --ext ts",
"format": "prettier --write \"./**/*.{ts,json,md,js}\"",
"format-pre-commit": "pretty-quick --staged --pattern '*/**/*.{ts,json,md,js}'",
"prepare": "husky install",
"semantic-release": "semantic-release",
"prepublishOnly": "npm run build"
},
"bin": {
"nodecg-io": "index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeoverflow-org/nodecg-io-cli.git"
},
"keywords": [
"nodecg-io"
],
"author": "CodeOverflow Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeoverflow-org/nodecg-io-cli/issues"
},
"files": [
"build",
"index.js"
],
"homepage": "https://github.com/codeoverflow-org/nodecg-io-cli#readme",
"devDependencies": {
"@semantic-release/git": "^10.0.0",
"@types/glob": "^8.0.0",
"@types/inquirer": "^8.1.3",
"@types/jest": "^27.0.2",
"@types/node": "^20.2.5",
"@types/semver": "^7.5.0",
"@types/tar-fs": "^2.0.1",
"@types/temp": "^0.9.1",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.41.0",
"husky": "^8.0.1",
"jest": "^27.2.5",
"memfs": "^4.2.0",
"prettier": "^3.0.0",
"pretty-quick": "^3.1.1",
"semantic-release": "^22.0.6",
"temp": "^0.9.4",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"dependencies": {
"axios": "^0.27.2",
"chalk": "^4.1.2",
"code-block-writer": "^11.0.0",
"glob": "^10.2.6",
"inquirer": "^8.2.0",
"isomorphic-git": "^1.24.0",
"semver": "^7.5.0",
"tar-fs": "^3.0.4",
"yargs": "^17.2.1"
}
}