12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "name": "xrpio",
- "version": "0.0.1",
- "description": "XRP arbitrary data writer and reader",
- "main": "lib/src/xrpIO/ripple-bindings.js",
- "scripts": {
- "clean": "rm -rf gui/main.js gui/index.html gateway/main.js build lib",
- "start": "npm run build && npm run launch",
- "launch": "node ./lib/Launcher.js",
- "tsc": "tsc",
- "build": "npm run clean && tsc",
- "build-all": "npm run build && npm run webpack-gui",
- "webpack-gui": "webpack --config webpack.gui.js --progress && cp build/gui/main.js gui",
- "webpack-gateway": "webpack --config webpack.gateway.js --progress && cp build/gateway/main.js gateway",
- "test": "npm run build && mocha --bail=true ./lib/test/*.js",
- "deploy": "node ./lib/Deploy.js"
- },
- "author": "nitowa",
- "license": "MIT",
- "dependencies": {
- "ripple-lib": "^1.9.3"
- },
- "devDependencies": {
- "@types/chai": "^4.2.21",
- "@types/mocha": "^8.2.2",
- "@types/node": "^14.14.37",
- "chai": "^4.3.4",
- "node-fetch": "^2.6.1",
- "base-64": "^1.0.0",
- "browserify-zlib": "^0.2.0",
- "crypto-browserify": "^3.12.0",
- "mocha": "^8.3.2",
- "process": "^0.11.10",
- "ts-loader": "^8.1.0",
- "typescript": "^3.9.5",
- "utf8": "^3.0.0",
- "webpack": "^5.30.0",
- "webpack-bundle-analyzer": "^4.4.0",
- "webpack-cli": "^4.6.0",
- "typedoc": "^0.15.0",
- "typedoc-plugin-markdown": "^2.2.6"
- }
- }
|