-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.38 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
{
"name": "@transia/hooks-toolkit",
"version": "1.0.16",
"description": "A toolkit for interacting with smart contracts (hooks) on the XRP Ledger.",
"main": "dist/npm/src/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"build:hooks": "c2wasm-cli contracts build",
"build:hook": "c2wasm-cli",
"test:unit": "jest --config=jest.config.unit.js",
"test:integration": "LOG_LEVEL=error jest --config=jest.config.integration.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/xrpl": "^2.7.3-alpha.27",
"c2wasm-cli": "^1.0.6",
"crypto-js": "^4.1.1",
"winston": "^3.10.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 < 9.0.0"
}
}