ms-rest-azure-js/package.json

115 строки
3.1 KiB
JSON
Исходник Обычный вид История

2017-09-13 22:30:50 +03:00
{
"name": "@azure/ms-rest-azure-js",
2017-09-13 22:30:50 +03:00
"author": {
"name": "Microsoft Corporation",
"email": "azsdkteam@microsoft.com",
"url": "https://github.com/Azure/ms-rest-azure-js"
2017-09-13 22:30:50 +03:00
},
"version": "1.3.3",
"description": "Isomorphic Azure client runtime for Typescript/node.js/browser javascript client libraries generated using AutoRest",
2017-09-13 22:30:50 +03:00
"tags": [
"isomorphic",
"browser",
"javascript",
2017-09-13 22:30:50 +03:00
"node",
"microsoft",
"autorest",
"clientruntime"
],
"keywords": [
"isomorphic",
"browser",
"javascript",
2017-09-13 22:30:50 +03:00
"node",
"microsoft",
"autorest",
"clientruntime"
],
"main": "./dist/msRestAzure.js",
"module": "./es/lib/msRestAzure.js",
"types": "./es/lib/msRestAzure.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"es/lib/**/*.js",
"es/lib/**/*.js.map",
"es/lib/**/*.d.ts",
"es/lib/**/*.d.ts.map",
"lib/**/*.ts",
"LICENSE",
"README.md"
],
2017-09-13 22:30:50 +03:00
"license": "MIT",
"dependencies": {
"@azure/ms-rest-js": "^1.8.1",
"tslib": "^1.9.2"
2017-09-13 22:30:50 +03:00
},
"devDependencies": {
2018-12-21 00:11:04 +03:00
"@ts-common/azure-js-dev-tools": "^0.6.0",
"@types/chai": "^4.1.4",
2018-06-09 03:24:09 +03:00
"@types/mocha": "^5.2.1",
2018-09-14 01:16:37 +03:00
"@types/node": "^10.9.4",
"chai": "^4.1.2",
2018-06-09 03:24:09 +03:00
"mocha": "^5.2.0",
2018-12-14 22:48:16 +03:00
"mocha-junit-reporter": "^1.18.0",
"mocha-multi-reporters": "^1.1.7",
"npm-run-all": "^4.1.5",
2018-11-28 02:18:09 +03:00
"nyc": "^13.1.0",
2018-12-14 22:48:16 +03:00
"opn-cli": "^4.0.0",
2018-11-28 02:18:09 +03:00
"rollup": "^0.67.3",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-visualizer": "^0.9.2",
2018-11-28 02:18:09 +03:00
"shx": "^0.3.2",
"ts-loader": "^5.3.1",
"ts-node": "^7.0.1",
2017-09-13 22:30:50 +03:00
"tslint": "^5.7.0",
"typescript": "^3.1.1",
"uglify-js": "^3.4.9",
"yarn": "^1.6.0"
2017-09-13 22:30:50 +03:00
},
"homepage": "https://github.com/Azure/ms-rest-azure-js",
2017-09-13 22:30:50 +03:00
"repository": {
"type": "git",
"url": "git@github.com:Azure/ms-rest-azure-js.git"
2017-09-13 22:30:50 +03:00
},
"bugs": {
"url": "http://github.com/Azure/ms-rest-azure-js/issues"
2017-09-13 22:30:50 +03:00
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
2018-12-14 22:48:16 +03:00
"coverage/**/*",
"**/*.d.ts",
"**/*.js"
],
"reporter": [
"text",
2018-12-14 22:48:16 +03:00
"html",
"cobertura"
],
"all": true
},
2017-09-13 22:30:50 +03:00
"scripts": {
"build": "run-p build:lib",
"build:lib": "run-s build:tsc build:rollup build:minify",
"build:tsc": "tsc -p tsconfig.es.json",
"build:rollup": "rollup -c rollup.config.js",
"build:minify": "uglifyjs -c -m --comments --source-map \"content='./dist/msRestAzure.js.map'\" -o ./dist/msRestAzure.min.js ./dist/msRestAzure.js",
"test": "run-p test:tslint test:unit",
"test:unit": "nyc mocha",
"test:tslint": "tslint -p . -c tslint.json --exclude test/**/*.ts",
2018-12-14 22:48:16 +03:00
"test:coverage": "npm run test && opn coverage/index.html",
2018-11-13 01:26:49 +03:00
"prepack": "npm install && npm run build",
"publish-preview": "npm test && shx rm -rf dist/test && node ./.scripts/publish",
"local": "ts-node ./.scripts/local.ts",
"latest": "ts-node ./.scripts/latest.ts",
2018-12-20 22:16:40 +03:00
"check:packagejsonversion": "ts-node ./.scripts/checkPackageJsonVersion.ts",
2018-12-21 00:11:04 +03:00
"check:foronlycalls": "ts-node ./.scripts/checkForOnlyCalls.ts",
"check:everything": "ts-node ./.scripts/checkEverything.ts"
},
"sideEffects": false
}