-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.6 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.6 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
57
58
59
60
61
62
63
64
65
{
"name": "@waves/node-api-js",
"version": "1.4.0",
"main": "cjs/index.js",
"types": "cjs/index.d.ts",
"scripts": {
"testCommand": "jest --detect-open-handles",
"prepublishOnly": "npm run build",
"build": "tsc -p ./tsconfig-cjs.json",
"test": "node-state -e -n -m typescript -o ./test/_state.ts -r"
},
"repository": {
"type": "git",
"url": "https://github.com/wavesplatform/node-api-js.git"
},
"dependencies": {
"@types/node-fetch": "^2.6.13",
"@waves/bignumber": "^1.2.0",
"@waves/ts-lib-crypto": "1.5.1",
"@waves/ts-types": "1.3.1",
"typed-ts-events": "^3.0.1"
},
"files": [
"cjs"
],
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/test/*spec.+(ts)",
"**/test/**/*spec.+(ts)"
],
"setupFilesAfterEnv": [
"<rootDir>/test/extendedMatcher.ts"
]
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"@waves/node-state": "^0.2.0-snapshot.1",
"@waves/waves-transactions": "4.4.0-snapshot.2",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^16.4.0",
"jest": "^30.3.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"typescript": "^5.9.2"
},
"overrides": {
"test-exclude": "^8.0.0",
"glob": "^13.0.6"
}
}