forked from Azure/autorest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.31 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
{
"name": "@azure-tools/extension",
"version": "3.3.1",
"description": "Yarn-Based extension aquisition (for Azure Open Source Projects)",
"engines": {
"node": ">=12.0.0"
},
"main": "./dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"scripts": {
"before-build": "mkdirp ./dist/yarn && cpy ./node_modules/yarn/lib/cli.js ./dist/yarn",
"build": "npm run -s before-build && tsc -p ./tsconfig.build.json",
"watch": "tsc -p ./tsconfig.build.json --watch",
"lint:fix": "eslint ./src --fix --ext .ts",
"lint": "eslint ./src --ext .ts --max-warnings=0",
"prepare": "npm run build",
"test": "jest --watchAll --coverage=false",
"test:ci": "jest --ci",
"clean": "rimraf ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/perks.git"
},
"keywords": [
"perks",
"autorest",
"azure",
"typescript"
],
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/Azure/perks/issues"
},
"homepage": "https://github.com/Azure/autorest/tree/main/packages/libs/extension",
"readme": "https://github.com/Azure/autorest/tree/main/packages/libs/extension/readme.md",
"old": {
"@types/npm": "^2.0.28",
"npm": "5.6.0"
},
"dependencies": {
"@azure-tools/async-io": "~3.0.0",
"@azure-tools/eventing": "~3.0.0",
"@azure-tools/tasks": "~3.0.0",
"@azure/logger": "^1.0.2",
"command-exists": "~1.2.9",
"npm-normalize-package-bin": "1.0.1",
"npm-package-arg": "^8.1.0",
"npm": "6.14.9",
"pacote": "9.2.3",
"rimraf": "^3.0.2",
"safe-buffer": "5.2.0",
"semver": "^5.5.1",
"yarn": "1.22.10"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/command-exists": "~1.2.0",
"@types/node": "~14.14.20",
"@types/npm-package-arg": "^6.1.0",
"@types/pacote": "~11.1.0",
"@types/semver": "5.5.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.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",
"mkdirp": "~0.5.1",
"source-map-support": "^0.5.19",
"typescript": "~4.4.2"
}
}