-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
128 lines (128 loc) · 3.82 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "vscode-heroku",
"description": "Check your project's Heroku deployment status.",
"license": "MIT",
"version": "2.0.0",
"engines": {
"node": ">=16",
"vscode": "^1.79.2"
},
"main": "./build/extension.js",
"scripts": {
"build": "rollup -c",
"bundle": "rm -Rf *.vsix && vsce package",
"clean": "rm -Rf ./build",
"dev:install": "./scripts/dev/install_heroku_cli.sh",
"dev:uninstall": "./scripts/dev/uninstall_heroku_cli.sh",
"prepare": "husky install",
"release": "semantic-release && vsce publish --yarn",
"pretest": "yarn clean && yarn build",
"test": "yarn test:lint && yarn test:inte",
"test:docker": "./scripts/run_tests_in_docker.sh",
"test:e2e": "node ./build/test/runTest.js",
"test:lint": "eslint .",
"test:type": "tsc --noEmit",
"watch": "yarn clean && yarn build"
},
"devDependencies": {
"@commitlint/cli": "17.6.6",
"@ivangabriele/commitlint-config": "1.1.0",
"@ivangabriele/eslint-config-typescript-base": "7.1.1",
"@ivangabriele/prettier-config": "3.1.0",
"@ivangabriele/semantic-release-config-no-npm": "3.0.3",
"@ivangabriele/tsconfig-node": "1.2.2",
"@rollup/plugin-commonjs": "25.0.3",
"@rollup/plugin-node-resolve": "15.1.0",
"@swc/core": "1.3.69",
"@types/mocha": "10.0.1",
"@types/node": "20.4.2",
"@types/vscode": "1.80.0",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"@vscode/test-electron": "2.3.3",
"@vscode/vsce": "2.19.0",
"dayjs": "1.11.9",
"eslint": "8.45.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-sort-destructure-keys": "1.5.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "2.3.0",
"execa": "7.1.1",
"glob": "10.3.3",
"husky": "8.0.3",
"is-command": "2.0.2",
"lint-staged": "13.2.3",
"mocha": "10.2.0",
"moment": "2.29.4",
"prettier": "2.8.8",
"rollup": "3.26.2",
"rollup-plugin-swc3": "0.9.1",
"semantic-release": "21.0.7",
"tslib": "2.6.0",
"typescript": "5.1.6"
},
"//": "https://github.com/okonet/lint-staged/issues/825#issuecomment-674575655",
"lint-staged": {
"*.{json,md,yaml,yml}": "prettier --write",
"*.{ts,tsx}": [
"yarn eslint --ext js,jsx,ts,tsx",
"bash -c 'npm run test:type'"
]
},
"packageManager": "[email protected]",
"prettier": "@ivangabriele/prettier-config",
"release": {
"extends": "@ivangabriele/semantic-release-config-no-npm"
},
"displayName": "Heroku",
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "extension.vscode-heroku.linkWorkspaceToHerokuApp",
"title": "Heroku: Link current workspace to an existing Heroku app"
},
{
"command": "extension.vscode-heroku.logInToHerokuCli",
"title": "Heroku: Log In to Heroku CLI"
},
{
"command": "extension.vscode-heroku.logOutOfHerokuCli",
"title": "Heroku: Log Out of Heroku CLI"
}
]
},
"author": {
"name": "Ivan Gabriele",
"email": "[email protected]",
"url": "https://www.ivangabriele.com"
},
"bugs": {
"url": "https://github.com/ivangabriele/vscode-heroku/issues"
},
"categories": [
"Other"
],
"homepage": "https://github.com/ivangabriele/vscode-heroku#readme",
"icon": "./res/icon.png",
"keywords": [
"extension",
"heroku",
"visual studio code",
"vsc",
"vscode"
],
"publisher": "ivangabriele",
"repository": {
"type": "git",
"url": "https://github.com/ivangabriele/vscode-heroku.git"
}
}