botbuilder-js/tools/package.json

82 строки
2.6 KiB
JSON

{
"name": "azure",
"private": true,
"author": "Microsoft Corporation",
"contributors": [
"Block, Glenn <gblock@microsoft.com>",
"Cowlishaw, Mark <markcowl@microsoft.com>",
"Dejardin, Louis <loudej@microsoft.com>",
"Georgiev, Yavor <yavorg@microsoft.com>",
"Janczuk, Tomasz <tjanczuk@microsoft.com>",
"Rodrigues, Andre <andrerod@microsoft.com>",
"Tavares, Chris <ctavares@microsoft.com>",
"Zavery, Amar <amzavery@microsoft.com>",
"Wang, Yugang <yugangw@microsoft.com>",
"Mkrtchyan, Hovsep <hovsepm@microsoft.com>",
"Lu, Jianghao <jianghlu@microsoft.com>",
"Krishnan, Balaji <Balaji.Krishnan@microsoft.com>"
],
"version": "2.2.1-preview",
"description": "Microsoft Azure Client Library for node",
"tags": [
"azure",
"sdk"
],
"keywords": [
"node",
"azure"
],
"main": "./lib/azure.js",
"license": "(MIT OR Apache-2.0)",
"dependencies": {
"@azure/identity": "^4.4.1",
"@azure/ms-rest-azure-env": "^2.0.0",
"@types/request": "^2.48.12",
"botframework-connector": "4.1.6",
"dotenv": "^16.4.5",
"mime": "^4.0.4",
"underscore": "^1.13.7",
"uuid": "^10.0.0"
},
"devDependencies": {
"@azure/msal-node": "^2.13.1",
"async": "^3.2.6",
"colors": "^1.4.0",
"fs-extra": "^11.2.0",
"gulp": "^5.0.0",
"gulp-exec": "^5.0.0",
"jshint": "^2.13.6",
"minami": "github:devigned/minami#master",
"mocha": "^10.7.3",
"nock": "^13.5.5",
"node-forge": "1.3.1",
"nyc": "^17.0.0",
"promise": "^8.3.0",
"random-js": "^2.1.0",
"should": "^13.2.3",
"sinon": "^19.0.2",
"xmlbuilder": "15.1.1"
},
"homepage": "http://github.com/azure/azure-sdk-for-node",
"repository": {
"type": "git",
"url": "https://github.com/azure/azure-sdk-for-node.git"
},
"bugs": {
"url": "http://github.com/Azure/azure-sdk-for-node/issues"
},
"scripts": {
"test": "npm -s run runtime-install && npm -s run jshint && npm -s run unit-msrestazure && npm -s run unit-arm && npm -s run unit && npm -s run unit-msrest",
"unit": "node scripts/unit.js testlist.txt",
"unit-arm": "node scripts/unit-arm.js testlistarm.txt",
"unit-msrest": "cd runtime/ms-rest && npm test",
"unit-msrestazure": "cd runtime/ms-rest-azure && npm test",
"setup": "node scripts/setup.js",
"jshint": "jshint ../lib --reporter=jslint",
"ci": "node scripts/unit.js testlist.txt",
"runtime-install": "node scripts/runtime-install.js",
"coverage": "node scripts/unit-coverage.js testlistarm.txt testlist.txt",
"debug": "node --inspect scripts/unit-arm.js testlistarm.txt"
}
}