mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-04 13:05:49 +00:00
Bumps [https-proxy-agent](https://github.com/TooTallNate/node-https-proxy-agent) from 4.0.0 to 5.0.0. - [Release notes](https://github.com/TooTallNate/node-https-proxy-agent/releases) - [Commits](https://github.com/TooTallNate/node-https-proxy-agent/compare/4.0.0...5.0.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
84 lines
2.6 KiB
JSON
84 lines
2.6 KiB
JSON
{
|
|
"name": "ripple-lib",
|
|
"version": "1.6.5",
|
|
"license": "ISC",
|
|
"description": "A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser",
|
|
"files": [
|
|
"dist/npm/*",
|
|
"build/ripple-latest-min.js",
|
|
"build/ripple-latest.js"
|
|
],
|
|
"main": "dist/npm/",
|
|
"unpkg": "build/ripple-latest-min.js",
|
|
"jsdelivr": "build/ripple-latest-min.js",
|
|
"types": "dist/npm/index.d.ts",
|
|
"browser": {
|
|
"ws": "./dist/npm/common/wswrapper.js",
|
|
"https-proxy-agent": false
|
|
},
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"dependencies": {
|
|
"@types/lodash": "^4.14.136",
|
|
"@types/ws": "^7.2.0",
|
|
"bignumber.js": "^9.0.0",
|
|
"https-proxy-agent": "^5.0.0",
|
|
"jsonschema": "1.2.2",
|
|
"lodash": "^4.17.4",
|
|
"lodash.isequal": "^4.5.0",
|
|
"ripple-address-codec": "^4.1.1",
|
|
"ripple-binary-codec": "^0.2.5",
|
|
"ripple-keypairs": "^1.0.0",
|
|
"ripple-lib-transactionparser": "0.8.2",
|
|
"ws": "^7.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^7.0.1",
|
|
"@types/node": "^13.1.1",
|
|
"@typescript-eslint/eslint-plugin": "^2.3.3",
|
|
"@typescript-eslint/parser": "^2.3.3",
|
|
"assert-diff": "^3.0.0",
|
|
"doctoc": "^1.4.0",
|
|
"ejs": "^3.0.1",
|
|
"eslint": "^6.5.1",
|
|
"eventemitter2": "^6.0.0",
|
|
"json-schema-to-markdown-table": "^0.4.0",
|
|
"mocha": "^7.1.1",
|
|
"nyc": "^15.0.0",
|
|
"prettier": "^1.19.1",
|
|
"ts-node": "^8.4.1",
|
|
"typescript": "^3.7.5",
|
|
"webpack": "^4.42.0",
|
|
"webpack-bundle-analyzer": "^3.6.0",
|
|
"webpack-cli": "^3.3.9"
|
|
},
|
|
"scripts": {
|
|
"build:schemas": "mkdir -p dist/npm/common && cp -r src/common/schemas dist/npm/common/",
|
|
"build:lib": "tsc --build",
|
|
"build:web": "webpack",
|
|
"build": "yarn build:schemas && yarn build:lib && yarn build:web",
|
|
"analyze": "yarn build:web --analyze",
|
|
"watch": "yarn build:lib --watch",
|
|
"clean": "rm -rf dist/npm",
|
|
"doctoc": "doctoc docs/index.md --title '# RippleAPI Reference' --github --maxlevel 2",
|
|
"docgen": "node --harmony scripts/build_docs.js",
|
|
"prepublish": "yarn clean && yarn build",
|
|
"test": "TS_NODE_PROJECT=src/tsconfig.json nyc mocha --exit",
|
|
"test:watch": "TS_NODE_PROJECT=src/tsconfig.json mocha --watch --reporter dot",
|
|
"format": "prettier --write '{src,test}/**/*.ts'",
|
|
"lint": "eslint 'src/**/*.ts' 'test/*-test.{ts,js}'",
|
|
"perf": "./scripts/perf_test.sh",
|
|
"start": "node scripts/http.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/ripple/ripple-lib.git"
|
|
},
|
|
"readmeFilename": "README.md",
|
|
"engines": {
|
|
"node": ">=8",
|
|
"yarn": "^1.15.2"
|
|
}
|
|
}
|