This repository has been archived by the owner on Jun 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.63 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": "@bloock/sdk",
"version": "1.5.5",
"description": "",
"keywords": [],
"main": "dist/lib/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"author": "Marc Baqué <mbaque@bloock.com>",
"repository": {
"type": "git",
"url": "https://github.com/bloock/bloock-sdk-js"
},
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --module commonjs",
"start": "npm run build && node dist/lib/index.js",
"test": "jest ./src",
"e2e": "jest ./test --testTimeout=60000"
},
"dependencies": {
"@analytics/google-analytics": "^0.5.3",
"analytics": "^0.8.1",
"axios": "^0.21.1",
"blakejs": "^1.1.0",
"buffer": "^5.6.0",
"crypto": "^1.0.1",
"i": "^0.3.7",
"jose": "^4.6.0",
"json-stable-stringify": "^1.0.1",
"key-encoder": "^2.0.3",
"node-forge": "^1.3.1",
"npm": "^8.6.0",
"pdf-lib": "^1.17.1",
"reflect-metadata": "^0.1.13",
"secp256k1": "^4.0.3",
"ts-polyfill": "^3.8.2",
"tsyringe": "^4.4.0",
"web3": "^1.7.3"
},
"devDependencies": {
"@types/jest": "^26.0.21",
"@types/json-stable-stringify": "^1.0.32",
"@types/node": "^17.0.23",
"@types/pdfmake": "^0.1.21",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"browserify": "^17.0.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"jest-mock-extended": "^1.0.13",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}