forked from Azure/autorest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.72 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
{
"name": "@autorest/codemodel",
"version": "4.20.0",
"description": "AutoRest code model library",
"directories": {
"doc": "docs"
},
"main": "dist/exports.js",
"typings": "dist/exports.d.ts",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"watch": "tsc -p tsconfig.build.json --watch",
"build": "tsc -p tsconfig.build.json",
"lint:fix": "eslint ./src --fix --ext .ts",
"lint": "eslint ./src --ext .ts --max-warnings=0",
"prepare": "npm run build",
"test": "echo codemodel: No Tests.",
"test:ci": "echo codemodel: No Tests.",
"clean": "rimraf ./dist ./temp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/autorest.powershell.git"
},
"keywords": [
"AutoRest",
"codegen"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Azure/autorest/issues"
},
"homepage": "https://github.com/Azure/autorest/tree/main/packages/libs/codemodel#readme",
"readme": "https://github.com/Azure/autorest/tree/main/packages/libs/codemodel/readme.md",
"devDependencies": {
"@types/js-yaml": "~4.0.0",
"@types/node": "~20.9.0",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint-plugin-jest": "~27.6.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prettier": "~5.0.1",
"eslint-plugin-unicorn": "~49.0.0",
"eslint-plugin-import": "~2.29.0",
"eslint": "^8.28.0",
"glob": "~7.1.4",
"rimraf": "^5.0.5",
"ts-morph": "~13.0.3",
"typescript-json-schema": "~0.53.0",
"typescript": "~5.2.2"
},
"dependencies": {
"@azure-tools/codegen": "~2.10.0",
"js-yaml": "~4.1.0"
},
"publishConfig": {
"access": "public"
}
}