forked from Azure/autorest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.25 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
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@autorest/core",
"version": "3.7.4",
"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",
"autorest-language-service": "./entrypoints/language-service.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 && rimraf ./*.log"
},
"typings": "./dist/exports.d.ts",
"devDependencies": {
"@autorest/common": "~1.4.1",
"@autorest/configuration": "~1.8.2",
"@autorest/schemas": "~1.3.2",
"@autorest/test-utils": "~0.5.0",
"@azure-tools/async-io": "~3.0.0",
"@azure-tools/codegen": "~2.9.0",
"@azure-tools/datastore": "~4.6.0",
"@azure-tools/deduplication": "~3.1.4",
"@azure-tools/extension": "~3.4.0",
"@azure-tools/json": "~1.2.1",
"@azure-tools/jsonschema": "~1.1.0",
"@azure-tools/oai2-to-oai3": "~4.5.1",
"@azure-tools/object-comparison": "~3.0.0",
"@azure-tools/openapi": "~3.2.3",
"@azure-tools/tasks": "~3.0.0",
"@azure-tools/uri": "~3.1.1",
"@azure-tools/yaml": "~1.0.0",
"@types/commonmark": "^0.27.0",
"@types/jest": "^26.0.20",
"@types/jsonpath": "^0.2.0",
"@types/lodash": "~4.14.168",
"@types/node": "~14.14.20",
"@types/webpack": "~4.41.26",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"ajv": "^8.6.0",
"ajv-errors": "^3.0.0",
"ajv-formats": "^2.1.0",
"commonmark": "^0.27.0",
"compare-versions": "^3.4.0",
"copy-webpack-plugin": "^7.0.0",
"cpy-cli": "~2.0.0",
"eslint-plugin-jest": "~24.3.2",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prettier": "~3.4.0",
"eslint-plugin-unicorn": "~33.0.1",
"eslint-plugin-import": "~2.24.2",
"eslint": "^7.17.0",
"jest": "^27.0.4",
"jsonpath": "1.0.0",
"lodash": "~4.17.20",
"mkdirp": "~0.5.1",
"prettier": "~2.3.1",
"rimraf": "^3.0.2",
"safe-buffer": "5.2.0",
"source-map-support": "^0.5.19",
"source-map": "0.7.3",
"ts-jest": "^27.0.3",
"ts-loader": "~9.2.3",
"typescript": "~4.4.2",
"vscode-jsonrpc": "^3.5.0",
"vscode-languageserver": "3.5.1",
"webpack-cli": "~4.7.2",
"webpack-node-externals": "~3.0.0",
"webpack": "~5.40.0",
"yaml-ast-parser": "0.0.43"
}
}