-
Notifications
You must be signed in to change notification settings - Fork 737
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.94 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.94 KB
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
90
91
{
"name": "@autorest/core",
"version": "3.10.9",
"description": "AutoRest Core Module",
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/autorest.git"
},
"keywords": [
"autorest",
"swagger",
"openapi"
],
"author": "Microsoft Corporation",
"license": "MIT",
"bugs": {
"url": "https://github.com/Azure/autorest/issues"
},
"homepage": "https://github.com/Azure/autorest#readme",
"readme": "https://github.com/Azure/autorest/blob/main/readme.md",
"main": "./dist/exports.js",
"bin": {
"autorest-core": "./entrypoints/app.js"
},
"scripts": {
"test": "jest --coverage=false --watch",
"test:unit:ci": "jest --ci",
"test:e2e": "jest --forceExit --runInBand --config ./jest.e2e.config.js",
"test:e2e:ci": "jest --ci --forceExit --runInBand --config ./jest.e2e.config.js",
"test:ci": "npm run test:unit:ci && npm run test:e2e:ci",
"watch": "tsc -p tsconfig.build.json --watch",
"build": "tsc -p tsconfig.build.json",
"build:prod": "webpack",
"lint:fix": "eslint ./src --fix --ext .ts",
"lint": "eslint ./src --ext .ts --max-warnings=0",
"prepack": "npm run clean && npm run build:prod",
"clean": "rimraf ./dist ./temp ./*.log"
},
"typings": "./dist/exports.d.ts",
"devDependencies": {
"@autorest/common": "workspace:~",
"@autorest/configuration": "workspace:~",
"@autorest/schemas": "workspace:~",
"@autorest/test-utils": "workspace:~",
"@azure-tools/async-io": "~3.0.0",
"@azure-tools/codegen": "workspace:~",
"@azure-tools/datastore": "workspace:~",
"@azure-tools/deduplication": "workspace:~",
"@azure-tools/extension": "workspace:~",
"@azure-tools/json": "workspace:~",
"@azure-tools/jsonschema": "workspace:~",
"@azure-tools/oai2-to-oai3": "workspace:~",
"@azure-tools/object-comparison": "~3.0.0",
"@azure-tools/openapi": "workspace:~",
"@azure-tools/tasks": "~3.0.0",
"@azure-tools/uri": "~3.1.1",
"@azure-tools/yaml": "workspace:~",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.24",
"@types/node": "~22.15.19",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"ajv": "^8.17.1",
"ajv-errors": "^3.0.0",
"ajv-formats": "^3.0.1",
"compare-versions": "^6.1.1",
"copy-webpack-plugin": "^14.0.0",
"eslint-plugin-jest": "~28.11.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prettier": "~5.4.0",
"eslint-plugin-unicorn": "~49.0.0",
"eslint-plugin-import": "~2.31.0",
"eslint": "^8.28.0",
"jest": "^29.3.1",
"lodash": "^4.18.1",
"prettier": "~3.5.3",
"rimraf": "^6.0.1",
"source-map-support": "^0.5.19",
"source-map": "^0.8.0-beta.0",
"ts-jest": "^29.3.4",
"ts-loader": "~9.5.7",
"typescript": "~5.8.3",
"vscode-jsonrpc": "^3.5.0",
"webpack-cli": "~7.0.2",
"webpack": "~5.106.2",
"yaml-ast-parser": "0.0.43"
}
}