-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.2 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
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "vscat",
"description": "Bringing VS Code syntax highlighting to the terminal!",
"version": "1.0.2",
"private": false,
"repository": "https://github.com/OmarTawfik/vscat",
"author": "Omar Tawfik <[email protected]>",
"license": "MIT",
"main": "out/src/index.js",
"bin": {
"vscat": "out/src/cli.js"
},
"scripts": {
"generate-metadata": "ts-node-transpile-only ./scripts/metadata",
"generate-readme": "ts-node ./scripts/readme",
"lint": "prettier . --list-different && tsc && jest"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"engines": {
"node": "15.14.0"
},
"files": [
"metadata/**",
"out/src/**"
],
"keywords": [
"vscode",
"terminal",
"syntax",
"highlighting"
],
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.2.3",
"@semantic-release/npm": "7.1.3",
"@semantic-release/release-notes-generator": "9.0.3",
"@types/cli-progress": "3.9.1",
"@types/commander": "2.12.2",
"@types/diff": "5.0.0",
"@types/fs-extra": "9.0.11",
"@types/jest": "26.0.23",
"@types/jest-specific-snapshot": "0.5.5",
"@types/micromatch": "4.0.1",
"@types/promise-queue": "2.2.0",
"@types/workerpool": "6.0.0",
"cli-progress": "3.9.0",
"clipboardy": "2.3.0",
"husky": "6.0.0",
"jest": "26.6.3",
"jest-specific-snapshot": "4.0.0",
"prettier": "2.3.0",
"promise-queue": "2.2.5",
"semantic-release": "17.4.4",
"terminal-screenshot": "1.0.0",
"ts-jest": "26.5.6",
"ts-node": "9.1.1",
"types-joi": "2.1.0",
"typescript": "4.2.4",
"workerpool": "6.1.4"
},
"dependencies": {
"chalk": "4.1.1",
"commander": "8.1.0",
"diff": "5.0.0",
"fs-extra": "10.0.0",
"joi": "17.4.0",
"jsonc-parser": "3.0.0",
"micromatch": "4.0.4",
"oniguruma": "7.2.1",
"vscode-textmate": "5.4.0"
}
}