-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.72 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
64
{
"name": "@atscaletech/libra-sdk",
"version": "1.0.1",
"description": "Libra Javascript SDK",
"license": "Apache-2.0",
"main": "dist/index.js",
"author": {
"name": "AtScale Technologies",
"email": "[email protected]",
"url": "https://github.com/atscaletech"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atscaletech/libra-js"
},
"bugs": {
"url": "https://github.com/atscaletech/libra-js/issues"
},
"homepage": "https://github.com/atscaletech/libra-js#readme",
"scripts": {
"lint": "tsdx lint src",
"fix:lint": "tsdx lint src --fix",
"test": "tsdx test src",
"test:coverage": "tsdx test --coverage",
"dev": "tsdx watch",
"build": "tsdx build",
"prepublishOnly": "tsdx build"
},
"engines": {
"node": "^14.13.1 || >=16.0.0"
},
"devDependencies": {
"@babel/plugin-syntax-import-assertions": "^7.20.0",
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
"@tsconfig/recommended": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "27.5.1",
"prettier": "^2.7.1",
"ts-jest": "27.1.5",
"tsdx": "^0.14.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@polkadot/api": "^9.6.2",
"@polkadot/extension-dapp": "^0.44.6",
"rxjs": "^7.5.7"
},
"resolutions": {
"**/typescript": "^4.8.4",
"**/@typescript-eslint/eslint-plugin": "^5.42.0",
"**/@typescript-eslint/parser": "^5.42.0",
"**/tsdx/jest": "27.5.1",
"**/tsdx/ts-jest": "27.1.5",
"**/tsdx/eslint": "^7.32.0"
},
"keywords": [
"libra",
"payment-sdk"
]
}