-
Notifications
You must be signed in to change notification settings - Fork 737
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.79 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.79 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
{
"name": "@azure-tools/deduplication",
"version": "3.2.4",
"description": "Deduplication of elements in OpenAPI 3 documents",
"main": "./dist/main.js",
"typings": "./dist/main.d.ts",
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/autorest.git"
},
"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",
"test": "jest --watchAll --coverage=false",
"test:ci": "jest --ci",
"clean": "rimraf ./dist ./temp"
},
"keywords": [
"perks",
"async",
"autorest",
"azure",
"typescript"
],
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/Azure/autorest/issues"
},
"homepage": "https://github.com/Azure/autorest/tree/main/packages/libs/deduplication",
"readme": "https://github.com/Azure/autorest/tree/main/packages/libs/deduplication/readme.md",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/lodash": "~4.17.16",
"@types/node": "~22.15.19",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"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",
"rimraf": "^6.0.1",
"typescript": "~5.8.3"
},
"dependencies": {
"@azure-tools/codegen": "workspace:~2.10.1",
"@azure-tools/datastore": "workspace:~4.8.2",
"@azure-tools/object-comparison": "~3.0.0",
"@azure-tools/tasks": "~3.0.0",
"compare-versions": "^6.1.1",
"lodash": "~4.17.20"
}
}