-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
{
"name": "sops-wrapper",
"version": "1.0.0",
"license": "MIT",
"author": "Mikita Sharayeu <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/Moon1706/sops-wrapper.git"
},
"description": "This module works as a wrapper for the Sops tool to Yaml and Json files.",
"main": "dist/index.js",
"type": "commonjs",
"scripts": {
"default": "npm install && npm run fmt && npm run lint && npm run build && npm run test",
"clean": "rimraf dist",
"fmt": "prettier --write .",
"lint": "npx eslint .",
"build": "npm run clean && tsc",
"test": "jest dist/"
},
"keywords": [
"gcp",
"aws",
"azure",
"sops",
"wrapper",
"typescript"
],
"dependencies": {
"execa": "^5.1.1",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/js-yaml": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.18.0",
"jest": "^28.1.2",
"prettier": "^2.7.1",
"rimfar": "^3.0.2-omega",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"bugs": {
"url": "https://github.com/Moon1706/sops-wrapper/issues"
},
"homepage": "https://github.com/Moon1706/sops-wrapper#readme"
}