-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
85 lines (85 loc) · 1.95 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": "semantic-release-vsce",
"version": "0.0.0-development",
"description": "semantic-release plugin to package and publish VS Code extensions",
"license": "MIT",
"type": "module",
"engines": {
"node": "^20.8.1 || >=22.0.0"
},
"repository": "https://github.com/felipecrs/semantic-release-vsce.git",
"bugs": "https://github.com/felipecrs/semantic-release-vsce/issues",
"homepage": "https://github.com/felipecrs/semantic-release-vsce#readme",
"author": "Morten Henriksen <mh@gi2.dk>",
"contributors": [
"Felipe Santos <felipecassiors@gmail.com>"
],
"keywords": [
"semantic-release",
"semantic-release-plugin",
"vscode",
"vsce"
],
"exports": "./index.js",
"files": [
"index.js",
"lib/**/*.js"
],
"scripts": {
"lint": "prettier --check . && eslint . && installed-check --ignore-dev",
"test": "c8 ava",
"posttest": "npm run lint",
"prepare": "husky"
},
"ava": {
"files": [
"test/**/*.test.js"
]
},
"nyc": {
"all": true,
"exclude": [
"lib/die.js"
],
"include": [
"index.js",
"lib/**/*.js"
]
},
"volta": {
"node": "22.12.0",
"npm": "11.0.0"
},
"dependencies": {
"@semantic-release/error": "^4.0.0",
"@vscode/vsce": "^3.0.0",
"execa": "^9.5.2",
"fs-extra": "^11.1.0",
"glob": "^11.0.0",
"ovsx": "^0.10.0"
},
"peerDependencies": {
"semantic-release": ">=20"
},
"devDependencies": {
"ava": "^6.1.2",
"c8": "^10.1.3",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.12.0",
"eslint-plugin-unicorn": "^56.0.1",
"esmock": "^2.6.9",
"husky": "^9.0.11",
"installed-check": "^9.0.0",
"lint-staged": "^15.0.1",
"neostandard": "^0.12.0",
"prettier": "^3.2.5",
"semantic-release": "^24.0.0",
"sinon": "^19.0.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"publishConfig": {
"provenance": true
}
}