vscode-vsce/package.json

80 lines
2 KiB
JSON
Raw Normal View History

2015-09-17 15:46:01 +02:00
{
2015-10-07 11:35:45 +02:00
"name": "vsce",
2019-06-12 12:19:35 +02:00
"version": "1.63.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",
2016-09-22 15:27:10 +02:00
"main": "out/api.js",
"typings": "out/api.d.ts",
2015-09-17 22:54:04 +02:00
"bin": {
"vsce": "out/vsce"
},
2015-09-18 13:01:31 +02:00
"scripts": {
2019-06-20 10:52:36 +02:00
"compile": "tsc && cpx src/vsce out",
2019-05-02 16:01:14 +02:00
"watch": "concurrently \"tsc --watch\" \"cpx --watch src/vsce out\"",
"watch-test": "concurrently \"tsc --watch\" \"cpx --watch src/vsce out\" \"mocha --watch\"",
2019-06-20 10:30:23 +02:00
"test": "mocha",
2019-06-20 10:52:36 +02:00
"prepublishOnly": "tsc && cpx src/vsce out && mocha"
2015-09-18 13:01:31 +02:00
},
2015-10-08 16:29:54 +02:00
"engines": {
2018-03-19 10:16:54 +01:00
"node": ">= 8"
2015-10-08 16:29:54 +02:00
},
2015-09-17 21:53:03 +02:00
"dependencies": {
"azure-devops-node-api": "^7.2.0",
2019-01-15 14:43:33 +03:00
"chalk": "^2.4.2",
2017-06-23 10:09:07 +02:00
"cheerio": "^1.0.0-rc.1",
2015-10-13 11:51:57 +02:00
"commander": "^2.8.1",
2015-10-13 16:49:47 +02:00
"denodeify": "^1.2.1",
2019-06-03 22:33:59 +05:30
"didyoumean": "^1.2.1",
2016-09-19 11:36:33 +02:00
"glob": "^7.0.6",
2018-08-03 15:23:42 +02:00
"lodash": "^4.17.10",
2017-06-23 10:09:07 +02:00
"markdown-it": "^8.3.1",
2015-10-14 11:18:34 +02:00
"mime": "^1.3.4",
2016-09-19 11:38:10 +02:00
"minimatch": "^3.0.3",
2015-09-18 19:35:25 +02:00
"osenv": "^0.1.3",
"parse-semver": "^1.1.1",
2015-09-18 19:35:25 +02:00
"read": "^1.0.7",
2015-12-16 17:09:51 +00:00
"semver": "^5.1.0",
2016-09-19 11:38:37 +02:00
"tmp": "0.0.29",
"typed-rest-client": "1.2.0",
2016-09-19 11:39:05 +02:00
"url-join": "^1.1.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": {
2017-06-23 10:09:07 +02:00
"@types/cheerio": "^0.22.1",
2019-04-12 16:42:09 +02:00
"@types/denodeify": "^1.2.31",
2019-06-07 07:40:00 +05:30
"@types/didyoumean": "^1.2.0",
2019-04-12 16:42:09 +02:00
"@types/glob": "^7.1.1",
"@types/lodash": "^4.14.123",
2017-06-23 10:09:07 +02:00
"@types/markdown-it": "0.0.2",
2019-04-12 16:42:09 +02:00
"@types/mime": "^1",
"@types/minimatch": "^3.0.3",
"@types/mocha": "^5.2.6",
2018-09-24 14:35:48 +02:00
"@types/node": "^8",
2019-04-12 16:42:09 +02:00
"@types/read": "^0.0.28",
"@types/semver": "^6.0.0",
"@types/tmp": "^0.1.0",
"@types/xml2js": "^0.4.4",
2019-04-12 11:37:14 +02:00
"concurrently": "^4.1.0",
"cpx": "^1.5.0",
2018-07-12 14:45:06 +02:00
"mocha": "^5.2.0",
2016-09-19 11:32:43 +02:00
"source-map-support": "^0.4.2",
2019-04-12 16:42:09 +02:00
"typescript": "^3.4.3",
2015-10-13 17:25:02 +02:00
"xml2js": "^0.4.12"
2015-09-17 21:53:03 +02:00
}
2019-06-20 10:30:23 +02:00
}