-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.85 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
{
"name": "@ideallabs/etf.js",
"version": "0.1.12-dev",
"description": "a typescript sdk for encryption/decryption with the etf network",
"license": "GPL-3.0",
"repository": "https://github.com/ideal-lab5/etf.js",
"main": "dist/index.js",
"type": "module",
"dependencies": {
"@ideallabs/etf-sdk": "^0.1.10-dev",
"@polkadot/api": "^10.9.1",
"@polkadot/api-augment": "^10.9.1",
"@polkadot/extension-dapp": "^0.46.3",
"@polkadot/rpc-provider": "^10.9.1",
"@polkadot/types": "^10.9.1",
"@polkadot/util": "^12.0.1",
"@polkadot/util-crypto": "^12.6.2",
"@substrate/connect": "^0.8.11",
"@substrate/txwrapper-substrate": "^7.0.1",
"events": "^3.3.0",
"js-crypto-hkdf": "^1.0.7"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"node_modules/variables/.+\\.(j|t)sx?$": "ts-jest"
},
"transformIgnorePatterns": [
"//node_modules/(?!variables/.*)"
],
"testPathIgnorePatterns": [
"dist"
],
"moduleNameMapper": {
"@ideallabs/etf-sdk": "<rootDir>/test/__mocks__/@ideallabs/etf-sdk.ts",
"@polkadot/rpc-provider": "<rootDir>/test/__mocks__/@polkadot/rpc-provider.ts",
"@polkadot/api": "<rootDir>/test/__mocks__/@polkadot/api.ts",
"@polkadot/api-augment": "<rootDir>/test/__mocks__/@polkadot/api-augment.ts",
"@polkadot/types": "<rootDir>/test/__mocks__/@polkadot/types.ts"
}
},
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "prettier --write ."
},
"devDependencies": {
"@babel/preset-typescript": "^7.22.11",
"@jest/globals": "^29.6.4",
"@types/jest": "^29.5.4",
"jest": "^29.6.2",
"prettier": "^3.0.3",
"rxjs": "^7.8.1",
"ts-jest": "^29.1.1",
"ts-jest-resolver": "^2.0.1",
"typescript": "^5.2.2"
}
}