forked from mhassan1/yarn-plugin-aws-codeartifact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.41 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
{
"name": "yarn-plugin-aws-codeartifact",
"version": "0.10.0",
"description": "Yarn Berry plugin that resolves authentication for AWS CodeArtifact NPM registries",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/mhassan1/yarn-plugin-aws-codeartifact.git"
},
"engines": {
"yarn": "^2.4.0"
},
"keywords": [
"yarn",
"berry",
"plugin",
"aws",
"codeartifact"
],
"author": "Marc Hassan",
"license": "MIT",
"bugs": {
"url": "https://github.com/mhassan1/yarn-plugin-aws-codeartifact/issues"
},
"homepage": "https://github.com/mhassan1/yarn-plugin-aws-codeartifact#readme",
"scripts": {
"test": "jest",
"build": "builder build plugin",
"prettier-check": "prettier --check .",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "yarn ts-check && yarn eslint && yarn prettier-check",
"eslint": "eslint --ext .ts .",
"ts-check": "tsc --noEmit --skipLibCheck",
"prepare": "yarn build",
"preversion": "yarn lint",
"version": "yarn format && yarn build && sed -Ei '' \"s/(yarn-plugin-aws-codeartifact\\/).+(\\/bundles)/\\1v$npm_package_version\\2/g\" README.md && git add -A",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@aws-sdk/client-codeartifact": "^3.50.0",
"@aws-sdk/credential-provider-env": "^3.50.0",
"@aws-sdk/credential-provider-node": "^3.50.0",
"@aws-sdk/property-provider": "^3.50.0",
"@yarnpkg/builder": "^3.1.0",
"@yarnpkg/cli": "^3.1.1",
"@yarnpkg/core": "^3.1.0",
"@yarnpkg/fslib": "^2.6.0",
"@yarnpkg/parsers": "^2.4.1",
"@yarnpkg/plugin-npm": "^2.6.0",
"@yarnpkg/plugin-pack": "^3.1.0",
"@yarnpkg/shell": "^3.1.0",
"clipanion": "^3.1.0",
"lodash.defaultsdeep": "^4.6.1",
"lodash.get": "^4.4.2",
"yargs-parser": "^21.0.0"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/lodash.defaultsdeep": "^4.6.6",
"@types/lodash.get": "^4.4.6",
"@types/node": "^16.11.24",
"@types/yargs-parser": "^20.2.1",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.8.0",
"eslint-plugin-jsdoc": "^37.8.2",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"resolutions": {
"cmake-js/yargs": "^16.2.0",
"cmake-js/npmlog": "^6.0.1"
},
"packageManager": "yarn@3.1.1"
}