azure-storage-node/package.json

80 строки
2.3 KiB
JSON

{
"name": "azure-storage",
"author": "Microsoft Corporation",
"version": "2.10.3",
"description": "Microsoft Azure Storage Client Library for Node.js",
"typings": "typings/azure-storage/azure-storage.d.ts",
"tags": [
"azure",
"storage",
"sdk"
],
"keywords": [
"node",
"azure",
"storage"
],
"main": "./lib/azure-storage.js",
"browserify": {
"./lib/common/signing/sharedkey.js": "./lib/common/signing/sharedkey.browser.js"
},
"engines": {
"node": ">= 0.8.26"
},
"license": "Apache-2.0",
"dependencies": {
"browserify-mime": "~1.2.9",
"extend": "^3.0.2",
"json-edm-parser": "0.1.2",
"md5.js": "1.3.4",
"readable-stream": "~2.0.0",
"request": "^2.86.0",
"underscore": "~1.8.3",
"uuid": "^3.0.0",
"validator": "~9.4.1",
"xml2js": "0.2.8",
"xmlbuilder": "^9.0.7"
},
"devDependencies": {
"batchflow": "0.4.0",
"browserify": "^16.1.1",
"coveralls": "^3.0.3",
"factor-bundle": "^2.5.0",
"grunt": "^1.0.4",
"grunt-jsdoc": "^2.3.0",
"ink-docstrap": "^1.3.0",
"istanbul": "^0.4.5",
"jshint": ">= 2.1.4",
"karma": "^4.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-edge-launcher": "^0.4.2",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^1.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"mocha": ">= 1.18.0",
"mocha-lcov-reporter": "^1.0.0",
"nock": "0.16",
"should": "1.2.x",
"uglify-js": "~3.3.9",
"watchify": "^3.11.0"
},
"homepage": "http://github.com/Azure/azure-storage-node",
"repository": {
"type": "git",
"url": "git@github.com:Azure/azure-storage-node.git"
},
"bugs": {
"url": "http://github.com/Azure/azure-storage-node/issues"
},
"scripts": {
"check": "jshint lib && npm set audit-level high && npm audit",
"test": "mocha --no-timeouts --recursive test",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec -u bdd --no-timeouts --recursive test",
"coveralls": "npm run cover && cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js",
"genjs": "node ./browser/bundle.js",
"jstest": "npm run genjs && node ./browser/test/bundle.js && karma start --single-run"
}
}