-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
64 lines (64 loc) · 1.75 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
{
"name": "serverless-better-credentials",
"version": "2.0.0",
"description": "Better AWS credentials resolution plugin for serverless",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf ./dist && tsc",
"lint": "eslint --ext .js,.ts --max-warnings=0 .",
"pre-commit": "npm run lint && npm run test && npm run build",
"release": "npm run pre-commit && standard-version",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thomasmichaelwallace/serverless-better-credentials.git"
},
"keywords": [
"serverless",
"aws",
"sso"
],
"author": "thomasmichaelwallace <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@serverless/utils": "^6.15.0",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.7",
"@types/serverless": "^3.12.17",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"aws-sdk": "^2.1478.0",
"eslint": "^8.52.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.3",
"inquirer": "^9.2.11",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"serverless": "3",
"simple-git-hooks": "^2.9.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@serverless/utils": "^6.0.2",
"aws-sdk": "^2.567.0",
"serverless": "^2 || ^3"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"open": "^8.4.2"
}
}