-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
105 lines (105 loc) · 2.93 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
{
"name": "ethers-aws-kms-signer",
"version": "1.3.2",
"description": "An Ethers.js compatible signer that connects to AWS KMS",
"license": "MIT",
"repository": "rjchow/ethers-aws-kms-signer",
"main": "dist/index.js",
"author": {
"name": "RJ Chow",
"email": "[email protected]",
"url": "https://github.com/rjchow"
},
"files": [
"dist",
"src"
],
"scripts": {
"type-check": "tsc --noEmit",
"test": "jest",
"coverage": "npm test -- --coverage",
"postcoverage": "open-cli coverage/lcov-report/index.html",
"lint": "eslint . --ext js,ts,tsx",
"lint:fix": "npm run lint -- --fix",
"postdocs": "git add README.md",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc --emitDeclarationOnly && babel src -d dist --ignore src/**/*.spec.ts,src/**/*.test.ts -x .js,.ts,.tsx",
"preversion": "npm run lint && npm test && npm run build",
"semantic-release": "semantic-release",
"commit": "git-cz",
"commit:retry": "git-cz --retry",
"commitmsg": "commitlint -e",
"commitlint-circle": "commitlint-circle",
"upgrade-deps": "npx updtr"
},
"types": "dist/ts/src/index.d.ts",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix --ext js,ts,tsx",
"git add"
]
},
"keywords": [
"generator-nod"
],
"dependencies": {
"asn1.js": "^5.4.1",
"aws-sdk": "^2.922.0",
"bn.js": "^5.2.0",
"debug": "^4.3.1",
"ethers": "^5.4.1"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.2",
"@babel/plugin-proposal-optional-chaining": "^7.14.2",
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@commitlint/prompt": "^12.1.4",
"@ls-age/commitlint-circle": "^1.0.0",
"@types/asn1": "^0.2.0",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.2",
"commitizen": "^4.2.4",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"git-cz": "^4.7.6",
"husky": "^6.0.0",
"jest": "^27.0.4",
"lint-staged": "^11.0.0",
"open-cli": "^6.0.1",
"prettier": "^2.3.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.3",
"semantic-release-npm-github-publish": "^1.4.0",
"typescript": "^4.3.2"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "node_modules/@commitlint/prompt"
}
},
"engines": {
"node": ">= 10.18"
}
}