-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "nest-caver",
"version": "1.1.4",
"author": {
"name": "Taehee Evan Kim",
"email": "[email protected]"
},
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Evan-Open-Source/nestjs-caver"
},
"scripts": {
"build": "rimraf dist && tsc && npm run build:index",
"build:index": "rimraf ./index.js ./index.d.ts && tsc -d --skipLibCheck ./index.ts",
"format": "prettier **/*.ts --ignore-path ./.prettierignore --write && git status",
"prepublish": "yarn run format && yarn run build"
},
"dependencies": {
"@nestjs/common": "^8.2.6",
"@nestjs/core": "^8.2.6",
"caver-js": "^1.9.1-rc.4",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.2.0"
},
"devDependencies": {
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "*",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"rimraf": "*",
"typescript": "^4.6.4"
},
"keywords": [
"nestjs",
"eth",
"caver",
"nestjs-eth",
"nestjs-caver",
"caver-js",
"ethereum",
"blockchain"
]
}