-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.8 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
{
"name": "xpopgen",
"version": "3.2.2",
"description": "Store XRPL Proof of Validation messages",
"main": "index.mjs",
"scripts": {
"dev": "nodemon .",
"xpopdev": "source .env && nodemon --max-old-space-size=40 .",
"serve": "serve ./store/",
"minify": "cat ./npm/browser.js | terser --compress --mangle > ./npm/browser.min.js",
"browserify": "browserify -p esmify -r ./npm/utils.mjs:xpop-utils -o ./npm/browser.js && npm run minify",
"release": "npm version patch && npm publish && git push && scripts/docker-push.sh"
},
"author": "Wietse Wind <[email protected]>",
"license": "MIT",
"nodemonConfig": {
"ext": "js,mjs,cjs,html",
"ignore": [
"/store/**"
]
},
"repository": {
"type": "git",
"url": "git://github.com/Xahau/Validation-Ledger-Tx-Store-to-xPOP.git"
},
"bugs": {
"url": "https://github.com/Xahau/Validation-Ledger-Tx-Store-to-xPOP/issues"
},
"homepage": "https://github.com/Xahau/Validation-Ledger-Tx-Store-to-xPOP/#readme",
"files": [
"lib/xpop/V1.mjs",
"lib/ledgerIndexToFolders.mjs",
"npm/utils.mjs",
"npm/browser.js",
"npm/browser.min.js",
"README.md"
],
"dependencies": {
"buffer": "^6.0.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ed25519": "^0.0.5",
"elliptic": "^6.5.4",
"express-autoindex": "^1.4.2",
"express-ws": "^5.0.2",
"morgan": "^1.10.0",
"node-fetch": "^3.3.2",
"nunjucks": "^3.2.4",
"ripple-address-codec": "^4.3.0",
"ripple-binary-codec": "^1.10.0",
"ws": "^8.14.2",
"wtfnode": "^0.9.1",
"xrpl-client": "^2.2.0"
},
"devDependencies": {
"browserify": "^17.0.0",
"esmify": "^2.1.1",
"serve": "^14.2.1",
"terser": "^5.21.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.7",
"utf-8-validate": "^6.0.3"
}
}