-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.57 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.57 KB
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
{
"name": "@transia/hooks-toolkit",
"version": "2.0.0",
"description": "A toolkit for interacting with smart contracts (hooks) on the Xahau Ledger.",
"main": "dist/npm/src/index.js",
"files": [
"dist/**/*",
"src"
],
"scripts": {
"build": "tsc",
"test:unit": "jest --config=jest.config.unit.js",
"test:integration-c": "LOG_LEVEL=error jest --config=jest.config.integration-c.js --runInBand",
"test:integration-js": "LOG_LEVEL=error jest --config=jest.config.integration-js.js --runInBand",
"lint": "eslint ./src/**/* --ext .ts",
"format": "npx prettier --write ./src"
},
"author": {
"name": "Denis Angell",
"url": "https://github.com/dangell7"
},
"license": "GPL-3.0-or-later",
"dependencies": {
"@transia/binary-models": "^1.1.0",
"crypto-js": "^4.1.1",
"dotenv": "^16.4.5",
"jshooks-api": "^1.0.5",
"lodash": "^4.17.21",
"reconnecting-websocket": "^4.4.0",
"winston": "^3.10.0",
"xahau": "^4.0.0"
},
"peerDependencies": {
"xahau": "^4.0.0"
},
"devDependencies": {
"@tsconfig/node16": "^16.1.0",
"@types/crypto-js": "^4.1.1",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.192",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.5.0",
"prettier": "^3.0.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}