-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.66 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
{
"name": "vs-compat-ts-plugin",
"version": "5.0.0",
"description": "TypeScript language service plugin to let more plugins work in Visual Studio.",
"main": "index.js",
"files": [
"src"
],
"engines": {
"node": ">=18"
},
"scripts": {
"pretest": "cd test/fixtures/workspace && npm install --omit=dev --ignore-scripts && cd ../../..",
"test": "npm run tape",
"tape": "tape test/*.spec.js",
"semantic-release": "semantic-release",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/andyrooger/vs-compat-ts-plugin.git"
},
"keywords": [
"typescript",
"ts",
"visual",
"studio",
"vs",
"language",
"service"
],
"author": "andyrooger",
"license": "MIT",
"bugs": {
"url": "https://github.com/andyrooger/vs-compat-ts-plugin/issues"
},
"homepage": "https://github.com/andyrooger/vs-compat-ts-plugin#readme",
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"husky": "^9.1.4",
"semantic-release": "^24.0.0",
"tape": "^5.5.3",
"typescript": "^3.7.5"
},
"dependencies": {
"mock-require": "^3.0.3"
},
"peerDependencies": {
"typescript": ">=2.9"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}