forked from MondoPower/codeartifact-auth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.82 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
{
"name": "@mondopower/codeartifact-auth",
"version": "2.1.2",
"description": "",
"main": "dist/cli.js",
"files": [
"dist"
],
"engines": {
"node": ">=16.19.1"
},
"bin": {
"codeartifact-auth": "dist/cli.js"
},
"scripts": {
"start": "ts-node ./src/index.ts",
"lint": "eslint .",
"audit": "check-audit",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"clean": "ts-node ./scripts/clean.ts",
"esbuild:action": "npm run clean action && ts-node scripts/esbuild.ts action",
"esbuild:cli": "npm run clean cli && ts-node scripts/esbuild.ts cli",
"prepublishOnly": "npm run esbuild:cli"
},
"author": "Mondo",
"license": "MIT",
"awsCodeArtifact": {
"domain": "mondo-artifacts",
"repository": "MondoNPMPackages",
"scope": "@mondo",
"region": "ap-southeast-2",
"accountId": "290556015539"
},
"devDependencies": {
"@mondopower/eslint-config-mondo": "^2.0.1",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/eslint-plugin-tslint": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vercel/ncc": "^0.36.1",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"esbuild": "^0.17.11",
"eslint": "^8.35.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^10.2.0",
"sinon": "^15.0.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.7.4"
},
"dependencies": {
"@actions/core": "^1.9.0",
"@actions/github": "^5.0.3",
"@types/node": "^16.18.14",
"aws-sdk": "^2.1188.0",
"install": "^0.13.0",
"npm-audit-resolver": "^3.0.0-9"
}
}