2015-09-17 15:46:01 +02:00
|
|
|
{
|
2015-10-07 11:35:45 +02:00
|
|
|
"name": "vsce",
|
2015-12-16 18:30:59 +00:00
|
|
|
"version": "1.0.0",
|
2015-09-17 15:46:01 +02:00
|
|
|
"description": "VSCode Extension Manager",
|
2015-10-08 16:29:54 +02:00
|
|
|
"repository": {
|
2015-10-09 10:52:23 +02:00
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/Microsoft/vsce"
|
2015-10-08 16:29:54 +02:00
|
|
|
},
|
|
|
|
"homepage": "https://code.visualstudio.com",
|
|
|
|
"bugs": "https://github.com/Microsoft/vsce/issues",
|
|
|
|
"keywords": [
|
|
|
|
"vscode",
|
|
|
|
"vsce",
|
|
|
|
"extension"
|
|
|
|
],
|
2015-10-09 10:52:23 +02:00
|
|
|
"contributors": [
|
|
|
|
"Microsoft Corporation"
|
|
|
|
],
|
2015-10-08 16:29:54 +02:00
|
|
|
"author": "Microsoft Corporation",
|
|
|
|
"license": "MIT",
|
2015-09-17 22:54:04 +02:00
|
|
|
"main": "out/main.js",
|
|
|
|
"bin": {
|
|
|
|
"vsce": "out/vsce"
|
|
|
|
},
|
2015-09-18 13:01:31 +02:00
|
|
|
"scripts": {
|
2015-09-29 17:15:19 +02:00
|
|
|
"test": "mocha",
|
2015-10-20 17:32:48 +02:00
|
|
|
"prepublish": "gulp compile && mocha"
|
2015-09-18 13:01:31 +02:00
|
|
|
},
|
2015-10-08 16:29:54 +02:00
|
|
|
"engines": {
|
2015-10-13 16:49:47 +02:00
|
|
|
"node": ">= 0.12"
|
2015-10-08 16:29:54 +02:00
|
|
|
},
|
2015-09-17 21:53:03 +02:00
|
|
|
"dependencies": {
|
2015-10-13 11:51:57 +02:00
|
|
|
"commander": "^2.8.1",
|
2015-10-13 16:49:47 +02:00
|
|
|
"denodeify": "^1.2.1",
|
2015-09-17 23:51:15 +02:00
|
|
|
"glob": "^5.0.14",
|
2015-09-17 21:53:03 +02:00
|
|
|
"lodash": "^3.10.1",
|
2015-10-14 11:18:34 +02:00
|
|
|
"mime": "^1.3.4",
|
2015-09-22 09:48:58 +02:00
|
|
|
"minimatch": "^2.0.10",
|
2015-09-18 19:35:25 +02:00
|
|
|
"osenv": "^0.1.3",
|
|
|
|
"read": "^1.0.7",
|
2015-12-16 17:09:51 +00:00
|
|
|
"semver": "^5.1.0",
|
2015-09-18 11:25:48 +02:00
|
|
|
"tmp": "0.0.27",
|
2015-10-26 11:26:06 +01:00
|
|
|
"url-join": "0.0.1",
|
2015-11-04 11:41:49 -08:00
|
|
|
"vso-node-api": "^0.5.0",
|
2015-12-16 17:52:43 +00:00
|
|
|
"yauzl": "^2.3.1",
|
2015-09-17 21:53:03 +02:00
|
|
|
"yazl": "^2.2.2"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2015-09-17 22:54:04 +02:00
|
|
|
"event-stream": "^3.3.1",
|
2015-09-17 21:53:03 +02:00
|
|
|
"gulp": "^3.9.0",
|
2015-09-17 22:54:04 +02:00
|
|
|
"gulp-filter": "^3.0.1",
|
2015-09-17 21:53:03 +02:00
|
|
|
"gulp-tsb": "^1.6.0",
|
2015-09-29 17:15:19 +02:00
|
|
|
"mocha": "^2.3.3",
|
2015-10-13 17:25:02 +02:00
|
|
|
"rimraf": "^2.4.3",
|
2015-10-14 11:18:34 +02:00
|
|
|
"source-map-support": "^0.3.2",
|
2015-10-13 17:25:02 +02:00
|
|
|
"xml2js": "^0.4.12"
|
2015-09-17 21:53:03 +02:00
|
|
|
}
|
2015-10-07 11:35:45 +02:00
|
|
|
}
|