-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
60 lines (60 loc) · 1.46 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
{
"name": "xumm-sdk",
"version": "0.1.2",
"description": "Interact with the Xumm Developer API",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"prepare": "npm run clean && npm run lint && npm run test && npm run build",
"clean": "rm -rf dist",
"build": "tsc",
"watch": "tsc -w",
"dev": "clear; npm run build; DEBUG=xumm-sdk* nodemon dist/samples/dev.js",
"test": "jest --ci --verbose",
"lint": "tslint -p ./"
},
"files": [
"src/**/*.js",
"src/**/*.d.ts"
],
"dependencies": {
"assert": "^2.0.0",
"bignumber.js": "^9.0.0",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"isomorphic-ws": "^4.0.1",
"node-fetch": "^2.6.1",
"ws": "^7.3.1"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.12",
"@types/node": "^12.12.55",
"@types/node-fetch": "^2.5.7",
"@types/ws": "^7.2.6",
"jest": "^26.4.2",
"jest-fetch-mock": "^3.0.3",
"mock-socket": "^9.0.3",
"ts-jest": "^26.3.0",
"tslint": "^5.20.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.9.5"
},
"repository": {
"type": "git",
"url": "git://github.com:XRPL-Labs/XUMM-SDK.git"
},
"bugs": {
"url": "https://github.com/XRPL-Labs/XUMM-SDK/issues"
},
"homepage": "https://github.com/XRPL-Labs/XUMM-SDK/#readme",
"license": "MIT",
"readmeFilename": "README.md",
"keywords": [
"xrp",
"xrpl",
"xumm",
"sdk",
"api"
]
}