-
Notifications
You must be signed in to change notification settings - Fork 742
/
Copy pathpackage.json
76 lines (76 loc) · 2.4 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
{
"name": "@autorest/modelerfour",
"version": "4.27.0",
"description": "AutoRest Modeler Version Four (component)",
"directories": {
"doc": "docs"
},
"engines": {
"node": ">=12.0.0"
},
"main": "dist/main.js",
"typings": "dist/main.d.ts",
"scripts": {
"clean": "rimraf ./dist ./temp",
"start": "node --max_old_space_size=4096 ./dist/main.js",
"debug": "node --max_old_space_size=4096 --inspect-brk=localhost:9229 ./dist/main.js",
"lint:fix": "eslint ./src ./test --fix --ext .ts",
"lint": "eslint ./src ./test --ext .ts --max-warnings=0",
"watch": "tsc -p tsconfig.build.json --watch",
"build": "tsc -p tsconfig.build.json",
"build:prod": "webpack",
"prepack": "npm run clean && npm run build:prod",
"test": "jest --watch --coverage=false",
"test:ci": "jest --ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/autorest.modelerfour.git"
},
"keywords": [
"AutoRest",
"ModelerFour"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Azure/autorest.modelerfour/issues"
},
"homepage": "https://github.com/Azure/autorest/tree/main/packages/extensions/modelerfour",
"readme": "https://github.com/Azure/autorest/tree/main/packages/extensions/modelerfour/readme.md",
"devDependencies": {
"@autorest/codemodel": "~4.20.0",
"@autorest/extension-base": "~3.6.0",
"@autorest/test-utils": "~0.6.0",
"@azure-tools/async-io": "~3.0.0",
"@azure-tools/codegen": "~2.10.0",
"@azure-tools/datastore": "~4.8.0",
"@azure-tools/openapi": "~3.6.0",
"@azure-tools/tasks": "~3.0.0",
"@azure-tools/uri": "~3.1.1",
"@types/jest": "^29.2.3",
"@types/lodash": "~4.14.168",
"@types/node": "~20.9.0",
"@types/webpack": "~5.28.5",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"chalk": "^4.1.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",
"jest": "^29.3.1",
"lodash": "~4.17.20",
"prettier": "~3.1.0",
"recursive-diff": "~1.0.6",
"rimraf": "^5.0.5",
"source-map-support": "^0.5.19",
"ts-jest": "^29.0.3",
"ts-loader": "~9.5.1",
"typescript": "~5.2.2",
"webpack-cli": "~5.1.4",
"webpack": "~5.89.0"
}
}