generated from oracle/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 2.04 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
{
"_comment": "Copyright (c) 2022, 2024, Oracle and/or its affiliates. All rights reserved. This software is licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl.",
"name": "oci-vscode-toolkit",
"displayName": "OCI Toolkit for VS Code",
"description": "OCI Toolkit for VS Code is a rich collection of OCI extensions, making it easier for you to develop, test and deploy applications on Oracle Cloud Infrastructure (OCI) straight from VS Code.",
"version": "1.0.5",
"engines": {
"vscode": "^1.53.0"
},
"license": "UPL",
"publisher": "Oracle",
"categories": [
"Extension Packs",
"Other"
],
"homepage": "https://docs.oracle.com/iaas/Content/API/SDKDocs/vscode_plugins_intro.htm",
"repository": {
"type": "git",
"url": "https://github.com/oracle-samples/oci-vscode-toolkit"
},
"icon": "media/images/oracle.png",
"bugs": {
"url": "https://github.com/oracle-samples/oci-vscode-toolkit/issues"
},
"galleryBanner": {
"color": "#FFFFFF",
"theme": "light"
},
"keywords": [
"Oracle",
"OCI",
"node",
"Javascript",
"Typescript",
"Resource Manager",
"Functions",
"Data Science",
"Terraform",
"Devops"
],
"scripts": {
"compile": "tsc -p tsconfig.json",
"lint": "eslint . --ext .js,.ts",
"lint-fix": "eslint . --ext .js,.ts --fix",
"postinstall": "find ./src -maxdepth 2 -name package.json -print -execdir echo 'npm install' \\; -execdir npm i \\;",
"package": "vsce package",
"build": "rm -rf dist && tsc -p tsconfig.production.json"
},
"extensionPack": [
"Oracle.oci-core",
"Oracle.rms",
"Oracle.odsc",
"Oracle.faas"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.7.0",
"husky": "^8.0.3",
"typescript": "4.1.3",
"mocha": "^8.2.3",
"vsce": "^1.79.5",
"chai": "^4.3.6"
},
"lint-staged": {
"**/*.{js,ts}": [
"npm run lint",
"npm run lint-fix"
]
}
}