vscode-vsce/package.json

87 lines
2.1 KiB
JSON
Raw Normal View History

2015-09-17 15:46:01 +02:00
{
2015-10-07 11:35:45 +02:00
"name": "vsce",
2020-08-25 11:41:50 +02:00
"version": "1.79.3",
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": {
2020-06-26 14:29:29 +02:00
"copy-vsce": "mkdir -p out && cp src/vsce out/vsce",
"compile": "tsc && yarn copy-vsce",
"watch": "yarn copy-vsce && tsc --watch",
"watch-test": "yarn copy-vsce && concurrently \"tsc --watch\" \"mocha --watch\"",
2019-06-20 10:30:23 +02:00
"test": "mocha",
2020-06-26 14:29:29 +02:00
"prepublishOnly": "tsc && yarn copy-vsce && mocha",
2019-06-20 11:23:47 +02:00
"vsce": "out/vsce"
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",
2016-09-19 11:36:33 +02:00
"glob": "^7.0.6",
2020-04-01 11:48:03 +05:30
"leven": "^3.1.0",
2020-02-18 10:03:19 +01:00
"lodash": "^4.17.15",
2020-04-01 12:01:50 +05:30
"markdown-it": "^10.0.0",
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",
"@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",
2020-04-02 11:56:42 +02:00
"@types/mocha": "^7.0.2",
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",
2020-02-18 10:03:19 +01:00
"concurrently": "^5.1.0",
2020-04-02 11:56:42 +02:00
"mocha": "^7.1.1",
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"
2020-04-02 11:56:42 +02:00
},
"mocha": {
"require": [
"source-map-support/register"
],
"spec": "out/test"
2015-09-17 21:53:03 +02:00
}
2020-04-02 11:56:55 +02:00
}