-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
65 lines (65 loc) · 1.52 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": "sops-decoder",
"version": "0.10.3",
"description": "SOPS Decoder for JavaScript (Node)",
"main": "./build/decode.js",
"types": "./build/decode.d.ts",
"keywords": [
"sops",
"secure"
],
"scripts": {
"test": "c8 node --require ts-node/register --test test/integration/*.test.ts",
"lint": "eslint src --ext .ts",
"build": "tsc"
},
"files": [
"src",
"build"
],
"repository": {
"type": "git",
"url": "https://github.com/koblas/sops-decoder-node.git"
},
"author": "David Koblas <[email protected]>",
"license": "MIT",
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"prettier": {
"trailingComma": "all"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.4.1",
"c8": "^10.1.2",
"eslint": "^8.44.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@aws-sdk/client-kms": "^3.369.0",
"@aws-sdk/client-sts": "^3.369.0"
}
}