mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-04 13:05:49 +00:00
- Remove .npmignore since it is overridden by package.json 'files' - Include build/ripple-latest-min.js, not everything in build/
78 lines
2.2 KiB
JSON
78 lines
2.2 KiB
JSON
{
|
|
"name": "ripple-lib",
|
|
"version": "1.4.0-b2",
|
|
"license": "ISC",
|
|
"description": "A JavaScript API for interacting with Ripple in Node.js and the browser",
|
|
"files": [
|
|
"dist/npm/*",
|
|
"build/ripple-latest-min.js"
|
|
],
|
|
"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": "^3.0.0",
|
|
"jsonschema": "1.2.2",
|
|
"lodash": "^4.17.4",
|
|
"ripple-address-codec": "^4.0.0",
|
|
"lodash.isequal": "^4.5.0",
|
|
"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",
|
|
"@typescript-eslint/eslint-plugin": "^2.3.3",
|
|
"@typescript-eslint/parser": "^2.3.3",
|
|
"assert-diff": "^1.0.1",
|
|
"doctoc": "^0.15.0",
|
|
"ejs": "^2.3.4",
|
|
"eslint": "^6.5.1",
|
|
"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",
|
|
"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": "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": ">=6.12.3"
|
|
}
|
|
}
|