This repository has been archived by the owner on Jun 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
105 lines (105 loc) · 2.68 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "github-actions-js",
"version": "1.0.0",
"description": "A VSCode extension and a parser/linter for GitHub workflow/action files.",
"publisher": "OmarTawfik",
"repository": {
"type": "git",
"url": "https://github.com/OmarTawfik/github-actions-js"
},
"author": "Omar Tawfik <OmarTawfik@users.noreply.github.com>",
"bugs": {
"url": "https://github.com/OmarTawfik/github-actions-js/issues",
"email": "OmarTawfik@users.noreply.github.com"
},
"license": "MIT",
"categories": [
"Programming Languages",
"Snippets",
"Linters",
"Formatters"
],
"scripts": {
"gulp": "./node_modules/.bin/gulp",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"engines": {
"vscode": "^1.31.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"rootDir": "./test"
},
"keywords": [
"github",
"actions",
"workflows",
"parser",
"linter",
"vscode",
"extension"
],
"devDependencies": {
"@commitlint/cli": "7.5.0",
"@commitlint/config-conventional": "7.5.0",
"@semantic-release/changelog": "3.0.2",
"@semantic-release/commit-analyzer": "6.1.0",
"@semantic-release/git": "7.0.8",
"@semantic-release/github": "5.2.10",
"@semantic-release/npm": "5.1.4",
"@semantic-release/release-notes-generator": "7.1.4",
"@types/del": "3.0.1",
"@types/execa": "0.9.0",
"@types/fs-extra": "5.0.5",
"@types/gulp": "4.0.5",
"@types/gulp-change": "1.0.0",
"@types/gulp-shell": "0.0.31",
"@types/gulp-sourcemaps": "0.0.32",
"@types/gulp-typescript": "2.13.0",
"@types/jest": "24.0.3",
"@types/joi": "14.3.2",
"@types/lru-cache": "5.1.0",
"@types/node": "11.9.0",
"del": "3.0.0",
"execa": "1.0.0",
"fs-extra": "7.0.1",
"gulp": "4.0.0",
"gulp-change": "1.0.2",
"gulp-merge-json": "1.3.1",
"gulp-shell": "0.6.5",
"gulp-sourcemaps": "2.6.4",
"gulp-typescript": "5.0.0",
"husky": "1.3.1",
"jest": "23.6.0",
"joi": "14.3.1",
"prettier": "1.16.4",
"prettier-check": "2.0.0",
"semantic-release": "15.13.3",
"ts-jest": "23.10.5",
"ts-node": "8.0.2",
"tslint": "5.12.1",
"tslint-config-airbnb": "5.11.1",
"tslint-config-prettier": "1.18.0",
"typescript": "3.3.3",
"vsce": "1.58.0",
"vscode": "1.1.30"
},
"dependencies": {
"@octokit/webhooks-definitions": "1.1.2",
"chalk": "2.4.2",
"lru-cache": "5.1.1",
"vscode-languageclient": "5.2.1",
"vscode-languageserver": "5.2.1"
}
}