forked from koblas/sops-decoder-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 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
{
"name": "sops-decoder",
"version": "0.9.4",
"description": "SOPS Decoder for JavaScript (Node)",
"main": "./build/decode.js",
"types": "./build/decode.d.ts",
"keywords": [
"sops",
"secure"
],
"scripts": {
"test": "true",
"lint": "eslint src --ext .ts",
"build": "tsc"
},
"files": [
"src",
"build"
],
"repository": {
"type": "git",
"url": "http://github.com/koblas/sops-decoder-node"
},
"author": "David Koblas <[email protected]>",
"license": "MIT",
"prettier": {
"trailingComma": "all"
},
"devDependencies": {
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"aws-sdk": "^2.883.0"
}
}