forked from adieuadieu/aws-kms-thingy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
143 lines (143 loc) · 3.57 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "@allthings/aws-kms-thingy",
"version": "1.0.0",
"description": "A wrapper/helper utility for encrypting/decrypting with AWS KMS",
"keywords": [
"aws",
"kms",
"encrypt",
"decrypt",
"helper",
"utility",
"cli",
"command",
"secrets",
"tool"
],
"engines": {
"npm": ">= 3.0.0",
"node": ">= 6.10.0"
},
"main": "dist/lib.cjs.js",
"module": "dist/lib.es.js",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"bin": {
"akt": "dist/cli.js",
"aws-kms-thingy": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/allthings/aws-kms-thingy.git"
},
"author": "Marco Lüthy <marco.luethy@gmail.com> (https://github.com/adieuadieu)",
"license": "MIT",
"bugs": {
"url": "https://github.com/allthings/aws-kms-thingy/issues"
},
"homepage": "https://github.com/allthings/aws-kms-thingy",
"scripts": {
"prebuild": "npm run clean",
"build": "tsc -d && rollup -c",
"clean": "rm -Rf dist",
"dev": "tsc -w",
"precommit": "lint-staged",
"prettier": "prettier --write",
"test": "jest",
"watch:test": "jest --watch",
"lint": "yarn lint:tsc && yarn lint:tslint",
"lint:tslint": "tslint -p tsconfig.json -t stylish",
"lint:tsc": "tsc -p tsconfig.json --noEmit --pretty",
"preversion": "git pull && yarn check --integrity && yarn security-check && yarn lint && yarn test",
"postversion": "git push --tags origin HEAD",
"prepublishOnly": "yarn lint && yarn test && yarn security-check && yarn build",
"release": "npm publish --new-version $npm_package_version --tag latest --access public && git push --tags origin HEAD",
"security-check": "yarn audit --groups dependencies",
"upgrade-dependencies": "yarn upgrade-interactive --latest --exact",
"commitmsg": "commitlint -e $GIT_PARAMS",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"dependencies": {},
"devDependencies": {
"@allthings/tslint-preset": "2.0.0",
"@commitlint/cli": "17.4.4",
"@commitlint/config-conventional": "17.4.4",
"@rollup/plugin-node-resolve": "15.0.1",
"@types/aws-lambda": "8.10.111",
"@types/jest": "29.4.1",
"@types/node": "17.0.35",
"aws-sdk-mock": "5.8.0",
"coveralls": "3.1.1",
"husky": "8.0.3",
"jest": "29.5.0",
"lint-staged": "13.2.0",
"nyc": "15.1.0",
"prettier": "2.8.4",
"rollup": "2.79.1",
"rollup-plugin-hashbang": "3.0.0",
"semantic-release": "19.0.5",
"ts-jest": "29.0.5",
"tslint": "6.1.3",
"typescript": "4.9.5"
},
"peerDependencies": {
"aws-sdk": "^2.814.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"useTabs": false
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn prettier",
"yarn lint",
"git add"
],
"*.{json}": [
"yarn prettier",
"git add"
]
},
"jest": {
"bail": false,
"collectCoverage": true,
"roots": [
"src/"
],
"setupFilesAfterEnv": [
"<rootDir>/test/setup.ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"coverageThreshold": {
"global": {
"branches": 94,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
]
}
}