ms-rest-azure-js/package.json

95 строки
2.4 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.14.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": "./lib/msRestAzure.ts",
"browser": "./es/lib/msRestAzure.js",
"types": "./typings/lib/msRestAzure.d.ts",
"license": "MIT",
"dependencies": {
"ms-rest-js": "file:C:/Users/daschult/Sources/ms-rest-js",
"tslib": "^1.9.2"
},
"devDependencies": {
"@types/mocha": "^5.2.1",
"@types/should": "^8.1.30",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.2",
"nyc": "^12.0.2",
"should": "5.2.0",
"shx": "^0.2.2",
"ts-loader": "^2.3.7",
"ts-node": "^5.0.1",
"tslint": "^5.7.0",
"typescript": "^2.5.2",
"uglify-es": "^3.1.0",
"webpack": "^3.6.0",
"yarn": "^1.6.0",
"ms-rest-js": "~0.19.380"
},
"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:node build:es build:browser",
"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
}