forked from Azure/azure-resource-manager-schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.43 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
{
"name": "template-schema-generator",
"version": "1.0.0",
"description": "Template schema generation tools.",
"private": true,
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"build": "tsc -p .",
"generate-onboarded-report": "ts-node cmd/generateonboardedreport",
"list-basepaths": "ts-node cmd/listbasepaths",
"list-resources": "ts-node cmd/listresources",
"generate-all": "ts-node cmd/generateall",
"find-basepath": "ts-node cmd/findbasepath",
"generate-single": "ts-node cmd/generatesingle",
"combine-batches": "ts-node cmd/combine-batches",
"clean": "ts-node cmd/clean",
"start": "npm run clean && npm run generate-all",
"lint": "eslint . --ext ts",
"lint:fix": "eslint . --ext ts --fix"
},
"devDependencies": {
"@autorest/azureresourceschema": "^3.0.109",
"@autorest/core": "^3.9.6",
"@ts-common/commonmark-to-markdown": "^2.0.2",
"@types/async": "^3.2.20",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.195",
"@types/node": "^20.4.4",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"async": "^3.2.4",
"autorest": "^3.6.3",
"colors": "^1.4.0",
"eslint": "^8.45.0",
"eslint-plugin-header": "^3.1.1",
"js-yaml": "^4.1.0",
"lodash": "^4.17.19",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"yargs": "^17.7.2"
}
}