2017-03-24 13:07:48 +03:00
{
2020-03-14 02:17:21 +03:00
"name" : "vscode-cosmosdbgraph" ,
2020-09-21 20:17:09 +03:00
"version" : "0.1.2-alpha" ,
2020-01-29 01:50:56 +03:00
"aiKey" : "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217" ,
"publisher" : "ms-azuretools" ,
2020-09-12 01:53:11 +03:00
"displayName" : "Azure Cosmos DB Graph (deprecated)" ,
2020-03-14 02:17:21 +03:00
"description" : "View Cosmos DB Graph databases in Azure." ,
2020-01-29 01:50:56 +03:00
"engines" : {
2020-05-19 22:03:33 +03:00
"vscode" : "^1.40.0"
2020-01-29 01:50:56 +03:00
} ,
"galleryBanner" : {
"color" : "#3c3c3c" ,
"theme" : "dark"
} ,
"icon" : "resources/cosmos.png" ,
2020-09-12 01:53:11 +03:00
"categories" : [ ] ,
"keywords" : [ ] ,
2020-01-29 01:50:56 +03:00
"preview" : true ,
2020-09-21 23:34:00 +03:00
"homepage" : "https://github.com/microsoft/vscode-cosmosdbgraph/blob/main/README.md" ,
2020-01-29 01:50:56 +03:00
"bugs" : {
2020-03-14 02:17:21 +03:00
"url" : "https://github.com/microsoft/vscode-cosmosdbgraph/issues"
2020-01-29 01:50:56 +03:00
} ,
"license" : "SEE LICENSE IN LICENSE.md" ,
"repository" : {
"type" : "git" ,
2020-03-14 02:17:21 +03:00
"url" : "https://github.com/microsoft/vscode-cosmosdbgraph"
2020-01-29 01:50:56 +03:00
} ,
"main" : "./main" ,
2020-03-14 02:17:21 +03:00
"activationEvents" : [ ] ,
2020-01-29 01:50:56 +03:00
"contributes" : {
2020-03-14 02:17:21 +03:00
"commands" : [ ] ,
2020-01-29 01:50:56 +03:00
"configuration" : {
"title" : "Cosmos DB" ,
"properties" : {
"cosmosDB.graph.maxVertices" : {
"type" : "integer" ,
"default" : 300 ,
"description" : "Set a limit for number of vertices displayed in a graph visualization"
} ,
"cosmosDB.graph.maxEdges" : {
"type" : "integer" ,
"default" : 500 ,
"description" : "Set a limit for number of edges displayed in a graph visualization"
} ,
"cosmosDB.graph.viewSettings" : {
"type" : "array" ,
"description" : "Settings for CosmosDB graph visualization." ,
"maxItems" : 1 ,
"items" : {
"type" : "object" ,
"description" : "A group of view settings" ,
"additionalProperties" : false ,
"properties" : {
"vertexSettings" : {
"type" : "array" ,
"description" : "Groups of vertex display settings" ,
"items" : {
"type" : "object" ,
"additionalProperties" : false ,
"properties" : {
"appliesToLabel" : {
"type" : "string" ,
"description" : "Specify a label value to restrict this settings group to only vertices with that label."
} ,
"displayProperty" : {
"type" : "array" ,
"description" : "The vertex property to display for the text. The first one found to have a non-empty value on the vertex is used. The default is the vertex id." ,
"items" : {
"type" : "string"
}
} ,
"color" : {
"type" : "string" ,
"description" : "The vertex color, either 'auto', a CSS color name or a CSS RGB value (e.g., '#0088FF')" ,
"pattern" : "^(auto)|([a-zA-Z]+)|(#[0-9a-fA-F]{3})|(#[0-9a-fA-F]{6})$" ,
"default" : "auto"
} ,
"showLabel" : {
"type" : "boolean" ,
"description" : "If true, the label will be displayed along with the specified display property" ,
"default" : true
}
}
}
}
}
} ,
"default" : [
{
"vertexSettings" : [
{
"displayProperty" : [
"name"
] ,
"color" : "auto" ,
"showLabel" : true
} ,
{
"appliesToLabel" : "person" ,
"displayProperty" : [
"fullName" ,
"lastName" ,
"firstName" ,
"name"
]
}
]
}
]
}
}
}
} ,
"scripts" : {
"vscode:prepublish" : "npm run webpack-prod" ,
2020-05-19 22:03:33 +03:00
"build" : "tsc" ,
"compile" : "tsc -watch" ,
2020-01-29 01:50:56 +03:00
"package" : "vsce package" ,
"lint" : "tslint --project tsconfig.json -t verbose" ,
"lint-fix" : "tslint --project tsconfig.json -t verbose --fix" ,
2020-05-19 22:03:33 +03:00
"pretest" : "npm run webpack-prod && gulp preTest" ,
"test" : "node ./out/test/runTest.js" ,
2020-01-29 01:50:56 +03:00
"webpack" : "npm run build && gulp webpack-dev" ,
"webpack-prod" : "npm run build && gulp webpack-prod" ,
"webpack-profile" : "webpack --profile --json --mode production > webpack-stats.json && echo Use http://webpack.github.io/analyse to analyze the stats" ,
"all" : "npm i && npm run lint && npm test"
} ,
"devDependencies" : {
"@types/d3" : "5.0.0" ,
2020-05-19 22:03:33 +03:00
"@types/fs-extra" : "^8.0.0" ,
"@types/gulp" : "^4.0.6" ,
"@types/mocha" : "^7.0.2" ,
"@types/node" : "^12.0.0" ,
2020-01-29 01:50:56 +03:00
"@types/socket.io" : "^1.4.32" ,
"@types/socket.io-client" : "^1.4.32" ,
2020-05-19 22:03:33 +03:00
"@types/vscode" : "1.40.0" ,
"copy-webpack-plugin" : "^5.1.1" ,
"glob" : "^7.1.6" ,
2020-01-29 01:50:56 +03:00
"gulp" : "^4.0.0" ,
2020-05-19 22:03:33 +03:00
"mocha" : "^7.1.2" ,
2020-01-29 01:50:56 +03:00
"mocha-junit-reporter" : "^1.18.0" ,
"mocha-multi-reporters" : "^1.1.7" ,
"string-replace-webpack-plugin" : "^0.1.3" ,
"ts-node" : "^7.0.1" ,
"tslint" : "^5.7.0" ,
"tslint-microsoft-contrib" : "5.0.1" ,
2020-05-19 22:03:33 +03:00
"typescript" : "^3.9.2" ,
2020-01-29 01:50:56 +03:00
"vsce" : "^1.37.5" ,
2020-05-19 22:03:33 +03:00
"vscode-azureextensiondev" : "^0.4.0" ,
"vscode-test" : "^1.3.0" ,
2020-01-29 01:50:56 +03:00
"webpack" : "4.28.1" ,
"webpack-cli" : "^3.1.2"
} ,
"dependencies" : {
"d3" : "^3.0.0" ,
2020-05-19 22:03:33 +03:00
"fs-extra" : "^8.0.0" ,
2020-01-29 01:50:56 +03:00
"gremlin" : "^2.6.0" ,
"socket.io" : "^1.7.3" ,
"socket.io-client" : "^1.7.3" ,
2020-05-19 22:03:33 +03:00
"vscode-azureextensionui" : "^0.33.0" ,
2020-03-14 02:17:21 +03:00
"vscode-nls" : "^4.0.0"
2020-01-29 01:50:56 +03:00
} ,
"extensionDependencies" : [
2020-03-14 02:17:21 +03:00
"ms-vscode.azure-account" ,
"ms-azuretools.vscode-cosmosdb"
2020-01-29 01:50:56 +03:00
]
2017-10-26 00:01:10 +03:00
}