-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.46 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
{
"name": "@hancock/sdk-nodejs",
"version": "1.0.0-alpha.49",
"description": "Client sdk for integration with hancock components",
"main": "dist/index.node.js",
"unpkg": "dist/index.node.js",
"jsnext:main": "main.mjs",
"browser": "dist/index.browser.js",
"typings": "dist/src/index.d.ts",
"files": [
"dist/**/*.{d.ts,js,js.map}"
],
"scripts": {
"clean": "rimraf dist",
"build:dev": "npm run clean && webpack --mode development --config webpack.config.js",
"build:prod": "npm run clean && webpack --mode production --config webpack.config.js",
"tsnode": "ts-node -O '{\"module\": \"commonjs\"}' test1.ts",
"test": "jest",
"test:watch": "jest --watchAll",
"coverage": "jest --coverage",
"lint": "tslint --project .",
"lint:fix": "npm run lint -- --fix",
"docs:clean": "rimraf typedocs",
"docs": "npm run docs:clean && typedoc --options ./typedoc.js ./src",
"deploy:gh": "push-dir --dir=typedocs --branch=gh-pages --cleanup --remote github"
},
"repository": {
"type": "git",
"url": "https://github.com/BBVA/hancock-sdk-nodejs.git"
},
"keywords": [
"hancock",
"sdk",
"client",
"nodejs"
],
"author": "[email protected]",
"license": "Apache-2.0",
"engines": {
"node": ">=13.7"
},
"peerDependencies": {
"es6-promise": "4.2.x",
"ethereumjs-tx": "1.3.x"
},
"devDependencies": {
"@types/deepmerge": "^2.2.0",
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "^26.0.20",
"@types/node": "^13.7.7",
"@types/ws": "^7.4.0",
"chai": "^4.3.0",
"config": "^3.3.3",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"jest-junit": "^12.0.0",
"js-yaml": "^4.0.0",
"mocha": "^8.2.1",
"nock": "^13.0.7",
"push-dir": "^0.4.1",
"rimraf": "^3.0.2",
"sinon": "^9.2.4",
"ts-jest": "^26.5.1",
"ts-loader": "^8.0.17",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typedoc": "^0.20.23",
"typescript": "^4.1.4",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0",
"webpack-merge": "^5.7.3",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"bignumber.js": "^9.0.1",
"deepmerge": "^4.2.2",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-wallet": "^1.0.1",
"eventemitter3": "^4.0.7",
"isomorphic-fetch": "^3.0.0",
"isomorphic-ws": "^4.0.1",
"safe-buffer": "^5.2.1",
"tslib": "^2.1.0",
"web3": "^1.3.4",
"web3-provider-engine": "^16.0.1",
"ws": "^7.4.3"
}
}