-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.28 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
{
"name": "@awboost/aws-vault-credentials",
"version": "0.2.1",
"type": "module",
"homepage": "https://github.com/awboost/aws-vault-credentials#readme",
"repository": {
"type": "git",
"url": "https://github.com/awboost/aws-vault-credentials.git"
},
"author": {
"email": "gordonmleigh@gmail.com",
"name": "Gordon Leigh"
},
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./lib/aws-vault-credentials.d.ts",
"default": "./lib/aws-vault-credentials.js"
}
},
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.map",
"!lib/**/*.test.*",
"src/**/*.ts",
"!src/**/*.test.ts"
],
"scripts": {
"build": "npm run clean && npm run compile && npm run lint",
"clean": "rm -rf lib/ *.tsbuildinfo",
"compile": "tsc",
"lint": "eslint src/ --ext=ts",
"watch:compile": "tsc -w"
},
"devDependencies": {
"@types/node": "^20.11.8",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
},
"dependencies": {
"@aws-sdk/types": "^3.78.0"
}
}