-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
69 lines (69 loc) · 1.89 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
65
66
67
68
69
{
"name": "xumm-sdk",
"version": "1.11.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 && npm run browserify",
"watch": "tsc -w",
"dev": "clear; npm run build; DEBUG=xumm-sdk* nodemon --require dotenv/config dist/samples/dev.js",
"browserify": "browserify -r ./dist/src/index.js:xumm-sdk -o dist/browser.js && npm run minify",
"minify": "cat dist/browser.js | terser --compress --mangle > dist/browser.min.js",
"test": "jest --ci --verbose",
"lint": "tslint -p ./"
},
"files": [
"dist/src/**/*.js",
"dist/src/**/*.d.ts",
"dist/browser.js",
"dist/browser.min.js"
],
"dependencies": {
"@types/websocket": "^1.0.5",
"assert": "^2.0.0",
"bignumber.js": "^9.0.0",
"buffer": "^6.0.3",
"debug": "^4.1.1",
"events": "^3.3.0",
"fetch-ponyfill": "^7.1.0",
"node-fetch": "^2.6.1",
"os-browserify": "^0.3.0",
"websocket": "^1.0.34"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.12",
"@types/node": "^12.20.25",
"@types/node-fetch": "^2.5.7",
"browserify": "^17.0.0",
"dotenv": "^8.2.0",
"jest": "^26.4.2",
"jest-fetch-mock": "^3.0.3",
"mock-socket": "^9.0.3",
"terser": "^5.8.0",
"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"
]
}