91 строка
3.1 KiB
JSON
91 строка
3.1 KiB
JSON
{
|
|
"name": "@azure-tools/mock-service-host",
|
|
"version": "0.1.17",
|
|
"description": "Azure Mock Service Host",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"debug": "tsc && node --max_old_space_size=4096 --inspect-brk ./dist/src/main.js",
|
|
"start": "tsc && node --max_old_space_size=4096 dist/src/main.js",
|
|
"build": "tsc && npm run copyfiles",
|
|
"copyfiles": "copyfiles -a \"./test/testData/**/*.json\" ./dist",
|
|
"unit-test": "npm run build && cross-env NODE_ENV=test jest --ci --reporters=default --reporters=jest-junit --config ./jest.unittest.config.js",
|
|
"unittest-update": "npm run build && cross-env NODE_ENV=test jest --ci --reporters=default --reporters=jest-junit --updateSnapshot --config ./jest.unittest.config.js",
|
|
"test": "npm run build && cross-env NODE_ENV=test jest --ci --reporters=default --reporters=jest-junit --runInBand",
|
|
"eslint-fix": "eslint . --ext .ts --ignore-pattern node_modules/ --ignore-pattern dist/ --fix",
|
|
"eslint": "eslint . --ext .ts --ignore-pattern node_modules/ --ignore-pattern dist/ --quiet",
|
|
"test-report": "npm run build && nyc mocha dist/test --recursive"
|
|
},
|
|
"author": "",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Azure/azure-sdk-tools",
|
|
"directory": "tools/mock-service-host"
|
|
},
|
|
"dependencies": {
|
|
"@azure-tools/openapi-tools-common": "^1.2.2",
|
|
"@jest/test-sequencer": "^28.1.1",
|
|
"@types/mkdirp": "^1.0.2",
|
|
"@types/mockjs": "^1.0.3",
|
|
"convict": "^6.2.3",
|
|
"cross-env": "^5.2.0",
|
|
"dotenv": "^7.0.0",
|
|
"express": "^4.16.2",
|
|
"fs-extra": "^7.0.1",
|
|
"inversify": "^5.0.1",
|
|
"jwt-simple": "^0.5.6",
|
|
"lodash": "^4.17.15",
|
|
"mockjs": "^1.1.0",
|
|
"oav": "~2.12.1",
|
|
"reflect-metadata": "^0.1.13",
|
|
"simple-git": "^3.7.1",
|
|
"winston": "^3.7.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ajv-keywords": "^3.4.0",
|
|
"@types/ajv-merge-patch": "^4.1.0",
|
|
"@types/commonmark": "^0.27.3",
|
|
"@types/convict": "^5.2.2",
|
|
"@types/express-oauth-server": "^2.0.2",
|
|
"@types/fs-extra": "^5.0.5",
|
|
"@types/glob": "^7.1.1",
|
|
"@types/jest": "^27.0.2",
|
|
"@types/js-yaml": "^3.12.1",
|
|
"@types/json-pointer": "^1.0.30",
|
|
"@types/json-schema-traverse": "^0.4.0",
|
|
"@types/lodash": "^4.14.149",
|
|
"@types/md5-file": "^4.0.0",
|
|
"@types/node": "^10.12.18",
|
|
"@types/request": "^2.48.1",
|
|
"@types/swagger-parser": "^4.0.3",
|
|
"@types/toposort": "^2.0.3",
|
|
"@types/uuid": "^3.4.4",
|
|
"@types/yargs": "^11.1.2",
|
|
"@typescript-eslint/eslint-plugin": "~3.4.0",
|
|
"@typescript-eslint/parser": "~3.4.0",
|
|
"copyfiles": "^2.1.0",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-prettier": "^6.11.0",
|
|
"eslint-plugin-import": "^2.21.2",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
|
|
"handlebars": "^4.7.1",
|
|
"jest": "^27.3.1",
|
|
"jest-junit": "^13.0.0",
|
|
"kind-of": "^6.0.3",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "2.2.1",
|
|
"should": "^13.2.3",
|
|
"ts-jest": "^27.0.7",
|
|
"tslib": "^2.0.0",
|
|
"typescript": "^3.9.5"
|
|
},
|
|
"files": [
|
|
"dist/src",
|
|
"doc",
|
|
".ssh/*.crt",
|
|
"script",
|
|
"README.md"
|
|
]
|
|
}
|