vscode-vsce/package.json

66 lines
1.4 KiB
JSON
Raw Normal View History

2015-09-17 15:46:01 +02:00
{
2015-10-07 11:35:45 +02:00
"name": "vsce",
2017-03-20 11:49:55 +01:00
"version": "1.19.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": {
2016-06-15 10:08:13 -07:00
"test": "gulp compile && 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",
2016-09-19 11:36:33 +02:00
"glob": "^7.0.6",
2016-09-19 12:25:48 +02:00
"lodash": "^4.15.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",
"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",
2017-03-31 08:41:31 +02: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-03-14 09:52:51 +01:00
"eslint": "^3.17.1",
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",
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",
2016-09-19 11:32:43 +02:00
"mocha": "^3.0.2",
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
}
2017-03-20 11:49:55 +01:00
}