-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "vscode-kubernetes-tools-api",
"version": "1.2.0",
"description": "Documents and encapsulates the API for the Kubernetes extension for Visual Studio Code",
"main": "js/index.js",
"types": "js/index.d.ts",
"files": [
"js/**/*"
],
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"prepare": "node ./node_modules/vscode/bin/install && npm run compile",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/Azure/vscode-kubernetes-tools-api"
},
"keywords": [
"Kubernetes"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/Azure/vscode-kubernetes-tools-api/issues"
},
"homepage": "https://github.com/Azure/vscode-kubernetes-tools-api#readme",
"engines": {
"vscode": "^1.31.0"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^10.2.0",
"gulp": "^4.0.0",
"gulp-tslint": "^8.1.2",
"mocha": "^4.1.0",
"tslint": "^5.9.1",
"typescript": "^3.2.2",
"vscode": "^1.1.34"
}
}