vscode-vsce/package.json
2019-06-07 07:40:00 +05:30

81 lines
2.1 KiB
JSON

{
"name": "vsce",
"version": "1.62.0",
"description": "VSCode Extension Manager",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vsce"
},
"homepage": "https://code.visualstudio.com",
"bugs": "https://github.com/Microsoft/vsce/issues",
"keywords": [
"vscode",
"vsce",
"extension"
],
"contributors": [
"Microsoft Corporation"
],
"author": "Microsoft Corporation",
"license": "MIT",
"main": "out/api.js",
"typings": "out/api.d.ts",
"bin": {
"vsce": "out/vsce"
},
"scripts": {
"compile": "concurrently \"tsc\" \"cpx src/vsce out\"",
"watch": "concurrently \"tsc --watch\" \"cpx --watch src/vsce out\"",
"watch-test": "concurrently \"tsc --watch\" \"cpx --watch src/vsce out\" \"mocha --watch\"",
"test": "concurrently \"tsc\" \"cpx src/vsce out\" && mocha",
"prepublishOnly": "concurrently \"tsc\" \"cpx src/vsce out\" && mocha"
},
"engines": {
"node": ">= 8"
},
"dependencies": {
"azure-devops-node-api": "^7.2.0",
"chalk": "^2.4.2",
"cheerio": "^1.0.0-rc.1",
"commander": "^2.8.1",
"denodeify": "^1.2.1",
"didyoumean": "^1.2.1",
"glob": "^7.0.6",
"lodash": "^4.17.10",
"markdown-it": "^8.3.1",
"mime": "^1.3.4",
"minimatch": "^3.0.3",
"osenv": "^0.1.3",
"parse-semver": "^1.1.1",
"read": "^1.0.7",
"semver": "^5.1.0",
"tmp": "0.0.29",
"typed-rest-client": "1.2.0",
"url-join": "^1.1.0",
"yauzl": "^2.3.1",
"yazl": "^2.2.2"
},
"devDependencies": {
"@types/cheerio": "^0.22.1",
"@types/commander": "^2.12.2",
"@types/denodeify": "^1.2.31",
"@types/didyoumean": "^1.2.0",
"@types/glob": "^7.1.1",
"@types/lodash": "^4.14.123",
"@types/markdown-it": "0.0.2",
"@types/mime": "^1",
"@types/minimatch": "^3.0.3",
"@types/mocha": "^5.2.6",
"@types/node": "^8",
"@types/read": "^0.0.28",
"@types/semver": "^6.0.0",
"@types/tmp": "^0.1.0",
"@types/xml2js": "^0.4.4",
"concurrently": "^4.1.0",
"cpx": "^1.5.0",
"mocha": "^5.2.0",
"source-map-support": "^0.4.2",
"typescript": "^3.4.3",
"xml2js": "^0.4.12"
}
}