autorest.testserver/package.json

94 строки
3.0 KiB
JSON

{
"name": "@microsoft.azure/autorest.testserver",
"version": "3.3.3",
"description": "Autorest test server.",
"main": "dist/cli/cli.js",
"bin": {
"autorest-testserver": "./dist/cli/cli.js",
"autorest-testserver-coverage": "./dist/reporter/cli.js",
"start-autorest-express": "./.scripts/start-autorest-express.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Azure/autorest.testserver"
},
"author": "Microsoft Corporation",
"license": "MIT",
"scripts": {
"dev": "npm run watch",
"start": "npm run build && node ./dist/cli/cli.js",
"start:prod": "node ./dist/cli/cli.js",
"start:dev": "concurrently \"npm run watch\" \"nodemon ./dist/cli/cli.js\"",
"stop": "node ./dist/cli/cli.js stop",
"fix": "eslint . --fix --ext .ts",
"lint": "eslint ./src --ext .ts --max-warnings=0",
"test": "jest --watchAll --coverage=false",
"test:ci": "jest --ci",
"watch": "tsc -p ./tsconfig.build.json --watch",
"build": "tsc -p ./tsconfig.build.json",
"clean": "rimraf dist/",
"coverage": "node ./dist/reporter/cli",
"prepack": "npm run build",
"format": "npm run -s prettier -- --write",
"check-format": "npm run -s prettier -- --check",
"prettier": "prettier --config ./.prettierrc.yml **/*.{ts,js,cjs,mjs,json,yml,yaml,md}"
},
"engines": {
"node": ">=10"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.2",
"@types/busboy": "^0.2.4",
"@types/commonmark": "^0.27.5",
"@types/deep-equal": "^1.0.1",
"@types/express": "^4.17.13",
"@types/express-promise-router": "^3.0.0",
"@types/express-serve-static-core": "4.17.24",
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.0",
"@types/js-yaml": "^4.0.5",
"@types/morgan": "^1.9.3",
"@types/mustache": "^4.1.2",
"@types/node": "~16.9.6",
"@types/request-promise-native": "^1.0.18",
"@types/supertest": "^2.0.10",
"@types/xml2js": "^0.4.9",
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"concurrently": "^6.5.1",
"eslint": "^7.32.0",
"eslint-plugin-import": "~2.24.2",
"eslint-plugin-prettier": "~4.0.0",
"eslint-plugin-unicorn": "~36.0.0",
"nodemon": "^2.0.15",
"prettier": "~2.4.1",
"rimraf": "^3.0.2",
"supertest": "^6.2.2",
"typescript": "^4.5.4"
},
"dependencies": {
"axios": "^0.21.4",
"azure-storage": "^2.10.7",
"body-parser": "^1.19.1",
"busboy": "^0.3.1",
"commonmark": "^0.30.0",
"deep-equal": "^2.0.5",
"express": "^4.17.2",
"express-promise-router": "^4.1.1",
"jest": "^27.4.7",
"js-yaml": "~4.1.0",
"morgan": "^1.10.0",
"mustache": "^4.1.0",
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"source-map-support": "^0.5.21",
"ts-jest": "^27.1.3",
"underscore": "^1.13.2",
"winston": "^3.3.4",
"xml2js": "^0.4.23",
"yargs": "^17.3.1"
}
}