2018-08-28 05:21:08 +03:00
|
|
|
{
|
|
|
|
"name": "@azure/storage-blob",
|
|
|
|
"version": "10.0.0-preview",
|
|
|
|
"description": "Microsoft Azure Storage SDK for JavaScript - Blob",
|
|
|
|
"main": "./dist/lib/index.js",
|
|
|
|
"module": "./es6dist/index.js",
|
|
|
|
"browser": "./dist/lib/index.browser.js",
|
|
|
|
"types": "./typings/lib/index.d.ts",
|
|
|
|
"dependencies": {
|
2018-09-03 10:51:51 +03:00
|
|
|
"ms-rest-js": "0.21.409"
|
2018-08-28 05:21:08 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/mocha": "^5.2.5",
|
2018-09-03 10:51:51 +03:00
|
|
|
"es6-promise": "^4.2.4",
|
2018-08-28 05:21:08 +03:00
|
|
|
"karma": "^3.0.0",
|
|
|
|
"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": "^5.2.0",
|
|
|
|
"rimraf": "^2.6.2",
|
|
|
|
"ts-loader": "^4.5.0",
|
|
|
|
"ts-node": "^7.0.1",
|
|
|
|
"tslint": "^5.11.0",
|
|
|
|
"typescript": "^3.0.1",
|
|
|
|
"uglifyjs-webpack-plugin": "^1.3.0",
|
|
|
|
"webpack": "^4.17.1",
|
|
|
|
"webpack-cli": "^3.1.0",
|
|
|
|
"zip-webpack-plugin": "^3.0.0"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"test": "npm run test:node && npm run test:browser",
|
|
|
|
"test:node": "mocha --no-timeouts -r ts-node/register test/*.ts test/node/*.ts",
|
|
|
|
"test:browser": "npm run build:browsertest && karma start --single-run",
|
2018-09-03 10:51:51 +03:00
|
|
|
"build": "npm run build:node && npm run build:browser && npm run build:browsertest",
|
2018-08-28 05:21:08 +03:00
|
|
|
"build:node": "npm run build:cjs && npm run build:es6",
|
|
|
|
"build:cjs": "node ./node_modules/typescript/bin/tsc -p tsconfig.json",
|
|
|
|
"build:es6": "node ./node_modules/typescript/bin/tsc -p tsconfig.es6.json",
|
|
|
|
"build:browser": "webpack && rimraf browser/typings",
|
|
|
|
"build:browsertest": "webpack --config webpack.config.test.js && rimraf browser/test/typings",
|
2018-09-03 10:51:51 +03:00
|
|
|
"build:autorest": "autorest ./swagger/README.md --typescript --use=@microsoft.azure/autorest.typescript@2.0.476",
|
|
|
|
"prepare": "npm run build",
|
2018-08-28 05:21:08 +03:00
|
|
|
"clean": "rimraf dist && rimraf browser && rimraf es6dist && rimraf typings && rimraf temp"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/Azure/azure-storage-js.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"Azure",
|
|
|
|
"Storage",
|
|
|
|
"Blob",
|
|
|
|
"Node.js",
|
|
|
|
"TypeScript",
|
|
|
|
"JavaScript",
|
|
|
|
"Browser"
|
|
|
|
],
|
|
|
|
"author": "Microsoft Corporation",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/Azure/azure-storage-js/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/Azure/azure-storage-js#readme"
|
|
|
|
}
|