forked from Figedi/sops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.66 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
{
"name": "@figedi/sops",
"version": "1.0.2",
"description": "Sops decrypting library",
"contributors": [],
"homepage": "https://github.com/figedi/sops",
"scripts": {
"specs:ci": "_mocha 'dist/**/*.spec.js'",
"specs": "_mocha --require ts-node/register 'src/**/*.spec.ts'",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
"build": "tsc"
},
"types": "dist/index.d.ts",
"main": "dist/index.js",
"engines": {
"node": ">=10.0.0"
},
"config": {
"exportAliases": {
"test": "./dist/test",
"kms": "./dist/kms"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/figedi/sops.git"
},
"keywords": [],
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.23",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"chai": "^4.2.0",
"commitlint": "^9.1.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-config-prettier": "^6.11.0",
"eslint-formatter-pretty": "^4.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"mocha": "^8.0.1",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"dependencies": {
"@types/lodash": "^4.14.157",
"@types/google-cloud__kms": "^1.5.1",
"@google-cloud/kms": "^2.1.2",
"lodash": "^4.17.19"
}
}