-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
89 lines (89 loc) · 2.84 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@microsoft.azure/autorest.testserver",
"version": "3.3.50",
"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": "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}'",
"validate-spec-coverage": "node ./dist/cli/cli.js validate-spec-coverage --maxErrorCount=77"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/busboy": "^1.5.0",
"@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": "^18.0.0",
"@types/supertest": "^2.0.10",
"@types/xml2js": "^0.4.9",
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"concurrently": "^6.5.1",
"eslint": "^8.0.0",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-unicorn": "~52.0.0",
"jest": "^29.6.2",
"nodemon": "^3.1.0",
"prettier": "~3.2.5",
"rimraf": "^3.0.2",
"supertest": "^6.2.2",
"ts-jest": "^29.1.1",
"typescript": "~5.4.5"
},
"dependencies": {
"@azure/storage-blob": "^12.11.0",
"body-parser": "^1.19.1",
"busboy": "^1.6.0",
"commonmark": "^0.30.0",
"deep-equal": "^2.0.5",
"express": "^4.17.2",
"express-promise-router": "^4.1.1",
"glob": "^8.0.3",
"js-yaml": "~4.1.0",
"morgan": "^1.10.0",
"mustache": "^4.1.0",
"source-map-support": "^0.5.21",
"underscore": "^1.13.2",
"winston": "^3.3.4",
"xml2js": "^0.6.2",
"yargs": "^17.3.1"
}
}