87 строки
2.7 KiB
JSON
87 строки
2.7 KiB
JSON
{
|
|
"name": "@autorest/clicommon",
|
|
"version": "0.4.11",
|
|
"description": "Autorest Azure Cli Common Module",
|
|
"main": "dist/index.js",
|
|
"engines": {
|
|
"node": ">=10.12.0"
|
|
},
|
|
"scripts": {
|
|
"start": "node dist/src/index.js",
|
|
"debug": "node --max_old_space_size=4096 --inspect-brk --inspect-port=9997 ./dist/src/index.js",
|
|
"eslint": "node_modules\\.bin\\eslint src/**/*.*",
|
|
"build": "tsc -p .",
|
|
"start-testserver": "./node_modules/.bin/start-autorest-testserver",
|
|
"stop-testserver": "./node_modules/.bin/stop-autorest-testserver",
|
|
"watch": "tsc -p . --watch",
|
|
"test": "npm run build && mocha",
|
|
"clean": "ver > nul 2>&1 nul && npm run --silent clean-cmd || npm run --silent clean-bash",
|
|
"clean-cmd": "if exist dist rmdir /s /q dist && exit 0 || exit 0 ",
|
|
"clean-bash": "rm nul && rm -rf dist && exit 0 || exit 0",
|
|
"pretest": "tsc"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Azure/autorest.clicommon.git"
|
|
},
|
|
"keywords": [
|
|
"autorest",
|
|
"extension"
|
|
],
|
|
"author": "Microsoft Corporation",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"autorest": "^3.0.6187",
|
|
"@types/chai": "^4.2.10",
|
|
"@types/js-yaml": "3.12.1",
|
|
"@types/mocha": "^7.0.2",
|
|
"@types/node": "10.17.0",
|
|
"@types/should": "^13.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^3.3.0",
|
|
"@typescript-eslint/parser": "^3.3.0",
|
|
"babel-eslint": "^10.1.0",
|
|
"chai": "^4.2.0",
|
|
"eslint": "^7.2.0",
|
|
"eslint-config-standard": "^14.1.1",
|
|
"eslint-plugin-babel": "^5.3.0",
|
|
"eslint-plugin-import": "^2.21.2",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
"eslint-plugin-standard": "^4.0.1",
|
|
"mocha": "^7.1.0",
|
|
"node-yaml": "^4.0.1",
|
|
"nyc": "^15.0.0",
|
|
"ts-node": "^8.6.2",
|
|
"typescript": "^3.8.3"
|
|
},
|
|
"dependencies": {
|
|
"@azure-tools/autorest-extension-base": "^3.1.235",
|
|
"@azure-tools/codegen": "^2.5.276",
|
|
"@azure-tools/codemodel": "4.13.325",
|
|
"@azure-tools/linq": "^3.1.232",
|
|
"@azure-tools/async-io": "^3.0.209",
|
|
"node-yaml": "^4.0.1"
|
|
},
|
|
"mocha": {
|
|
"diff": true,
|
|
"extension": [
|
|
"js",
|
|
"ts"
|
|
],
|
|
"opts": false,
|
|
"reporter": "spec",
|
|
"slow": 75,
|
|
"timeout": 2000,
|
|
"ui": "bdd",
|
|
"require": "ts-node/register",
|
|
"watch-files": [
|
|
"dist/**/*.js",
|
|
"test/**/*.js"
|
|
],
|
|
"recursive": true
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|