{ "name": "ripple-lib", "version": "1.3.4", "license": "ISC", "description": "A JavaScript API for interacting with Ripple in Node.js and the browser", "files": [ "dist/npm/*", "build/*" ], "main": "dist/npm/", "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": "^3.2.0", "bignumber.js": "^4.1.0", "https-proxy-agent": "2.2.1", "jsonschema": "1.2.2", "lodash": "^4.17.4", "lodash.isequal": "^4.5.0", "ripple-address-codec": "^3.0.4", "ripple-binary-codec": "^0.2.4", "ripple-keypairs": "^0.10.1", "ripple-lib-transactionparser": "0.8.0", "ws": "^3.3.1" }, "devDependencies": { "@types/node": "11.13.0", "assert-diff": "^1.0.1", "doctoc": "^0.15.0", "ejs": "^2.3.4", "eventemitter2": "^0.4.14", "gulp": "^4.0.2", "json-loader": "^0.5.2", "json-schema-to-markdown-table": "^0.4.0", "mocha": "6.2.0", "mocha-junit-reporter": "^1.9.1", "null-loader": "^0.1.1", "nyc": "^14.1.1", "source-map-support": "0.5.12", "ts-loader": "^3.2.0", "ts-node": "8.0.3", "tslint": "^5.8.0", "tslint-eslint-rules": "^4.1.1", "typescript": "^3.6.4", "uglifyjs-webpack-plugin": "^1.1.4", "webpack": "3.12.0" }, "scripts": { "build": "gulp", "doctoc": "doctoc docs/index.md --title '# RippleAPI Reference' --github --maxlevel 2", "docgen": "node --harmony scripts/build_docs.js", "clean": "rm -rf dist/npm", "compile": "mkdir -p dist/npm/common && cp -r src/common/schemas dist/npm/common/ && tsc --build", "watch": "tsc -w", "prepublish": "npm run clean && npm run compile && npm run build", "test": "TS_NODE_PROJECT=src/tsconfig.json nyc mocha --exit", "lint": "tslint -p ./", "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": ">=6.12.3" } }