-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
62 lines (62 loc) · 1.74 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
{
"name": "publish-vscode-extension",
"version": "1.6.2",
"description": "GitHub action to publish your VS Code Extension to the Open VSX Registry.",
"main": "dist/index.js",
"scripts": {
"test": "nyc mocha 'out/test/**/*.test.js'",
"coverage": "nyc report --reporter=lcov",
"build": "npm run build:ncc && npm run build:test",
"build:ncc": "ncc build src/index.ts --source-map --no-source-map-register",
"build:test": "tsc -p tsconfig.json",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HaaLeo/publish-vscode-extension.git"
},
"keywords": [
"github",
"action",
"open",
"vsx",
"vscode",
"publish",
"Visual Studio Code"
],
"author": {
"name": "HaaLeo",
"url": "https://github.com/HaaLeo"
},
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/HaaLeo/publish-vscode-extension/issues"
},
"homepage": "https://github.com/HaaLeo/publish-vscode-extension#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@vscode/vsce": "~2.22.0",
"ovsx": "^0.8.3"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^10.0.0",
"@types/node": "^16.11.26",
"@types/sinon": "^10.0.6",
"@types/sinon-chai": "^3.2.6",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"@vercel/ncc": "^0.38.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^8.4.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "^16.0.0",
"sinon-chai": "^3.7.0",
"typescript": "^5.0.3"
}
}