96 строки
2.5 KiB
JSON
96 строки
2.5 KiB
JSON
{
|
|
"name": "ms-rest-azure-js",
|
|
"author": {
|
|
"name": "Microsoft Corporation",
|
|
"email": "azsdkteam@microsoft.com",
|
|
"url": "https://github.com/Azure/ms-rest-azure-js"
|
|
},
|
|
"version": "0.17.0",
|
|
"description": "Isomorphic Azure client runtime for Typescript/node.js/browser javascript client libraries generated using AutoRest",
|
|
"tags": [
|
|
"isomorphic",
|
|
"browser",
|
|
"javascript",
|
|
"node",
|
|
"microsoft",
|
|
"autorest",
|
|
"clientruntime"
|
|
],
|
|
"keywords": [
|
|
"isomorphic",
|
|
"browser",
|
|
"javascript",
|
|
"node",
|
|
"microsoft",
|
|
"autorest",
|
|
"clientruntime"
|
|
],
|
|
"main": "./dist/lib/msRestAzure.js",
|
|
"browser": "./es/lib/msRestAzure.js",
|
|
"types": "./typings/lib/msRestAzure.d.ts",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"ms-rest-js": "~0.22.422",
|
|
"tslib": "^1.9.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.1.4",
|
|
"@types/mocha": "^5.2.1",
|
|
"@types/node": "^10.9.4",
|
|
"chai": "^4.1.2",
|
|
"mocha": "^5.2.0",
|
|
"npm-run-all": "^4.1.2",
|
|
"nyc": "^12.0.2",
|
|
"shx": "^0.2.2",
|
|
"ts-loader": "^2.3.7",
|
|
"ts-node": "^5.0.1",
|
|
"tslint": "^5.7.0",
|
|
"typescript": "^3.0.3",
|
|
"uglify-es": "^3.1.0",
|
|
"webpack": "^3.6.0",
|
|
"yarn": "^1.6.0"
|
|
},
|
|
"homepage": "https://github.com/Azure/ms-rest-azure-js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:Azure/ms-rest-azure-js.git"
|
|
},
|
|
"bugs": {
|
|
"url": "http://github.com/Azure/ms-rest-azure-js/issues"
|
|
},
|
|
"nyc": {
|
|
"extension": [
|
|
".ts"
|
|
],
|
|
"exclude": [
|
|
"**/*.d.ts"
|
|
],
|
|
"include": [
|
|
"lib/**/*.ts"
|
|
],
|
|
"reporter": [
|
|
"text",
|
|
"html"
|
|
],
|
|
"all": true
|
|
},
|
|
"scripts": {
|
|
"build": "run-p build:scripts build:node build:es build:browser",
|
|
"build:scripts": "tsc -p ./.scripts/",
|
|
"build:node": "tsc",
|
|
"build:es": "tsc -p tsconfig.es.json",
|
|
"build:browser": "webpack && node node_modules/uglify-es/bin/uglifyjs --source-map -c -m -o msRestAzureBundle.min.js msRestAzureBundle.js",
|
|
"watch:node": "tsc -w",
|
|
"watch:browser": "webpack -w",
|
|
"test": "run-p test:tslint test:unit",
|
|
"test:unit": "nyc mocha",
|
|
"test:tslint": "tslint -p . -c tslint.json --exclude test/**/*.ts",
|
|
"prepare": "npm run build",
|
|
"publish-preview": "npm test && shx rm -rf dist/test && node ./.scripts/publish",
|
|
"local": "ts-node ./.scripts/local.ts",
|
|
"preview": "ts-node ./.scripts/preview.ts",
|
|
"latest": "ts-node ./.scripts/latest.ts"
|
|
},
|
|
"sideEffects": false
|
|
}
|