vscode-vsce/package.json

75 lines
1.7 KiB
JSON
Raw Normal View History

2015-09-17 15:46:01 +02:00
{
2015-10-07 11:35:45 +02:00
"name": "vsce",
2018-12-19 08:51:34 +01:00
"version": "1.54.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": {
2018-10-15 10:49:39 -07:00
"watch": "gulp watch",
"watch-test": "gulp watch-test",
2016-06-15 10:08:13 -07:00
"test": "gulp compile && mocha",
2018-09-24 14:31:03 +02:00
"prepublishOnly": "gulp compile && 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": {
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",
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",
2016-09-19 11:39:05 +02:00
"url-join": "^1.1.0",
2018-02-19 10:05:05 +01:00
"vso-node-api": "6.1.2-preview",
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",
"@types/markdown-it": "0.0.2",
2018-09-24 14:35:48 +02:00
"@types/node": "^8",
2017-03-14 09:52:51 +01:00
"eslint": "^3.17.1",
2018-11-27 16:32:17 +01:00
"event-stream": "3.3.4",
2015-09-17 21:53:03 +02:00
"gulp": "^3.9.0",
2016-09-19 11:32:43 +02:00
"gulp-filter": "^4.0.0",
2017-03-14 09:52:51 +01:00
"gulp-sourcemaps": "^2.4.1",
2015-09-17 21:53:03 +02:00
"gulp-tsb": "^1.6.0",
2016-09-19 11:25:57 +02:00
"gulp-tslint": "^6.1.1",
2017-03-14 09:52:51 +01:00
"gulp-typescript": "^3.1.5",
2018-07-12 14:45:06 +02:00
"mocha": "^5.2.0",
2015-10-13 17:25:02 +02:00
"rimraf": "^2.4.3",
2016-09-19 11:32:43 +02:00
"source-map-support": "^0.4.2",
2016-09-19 11:25:57 +02:00
"tslint": "^3.15.1",
2017-03-14 09:52:51 +01:00
"typescript": "^2.2.1",
2015-10-13 17:25:02 +02:00
"xml2js": "^0.4.12"
2015-09-17 21:53:03 +02:00
}
2018-09-24 14:35:48 +02:00
}