You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 892B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "rjsvm",
  3. "version": "0.2.2",
  4. "description": "",
  5. "main": "lib/src/main.js",
  6. "scripts": {
  7. "clean": "rm -rf lib",
  8. "start": "npm run build && npm run launch",
  9. "build": "npm run clean && npm run tsc",
  10. "launch": "node lib/launcher.js",
  11. "test": "npm run clean && npm run build && mocha --bail=true lib/test/Test.js",
  12. "tsc": "tsc"
  13. },
  14. "author": "",
  15. "license": "ISC",
  16. "dependencies": {
  17. "xrpio": "^0.2.1",
  18. "xrpl": "^2.7.0",
  19. "zod": "^3.21.4"
  20. },
  21. "devDependencies": {
  22. "@types/chai": "^4.3.6",
  23. "@types/expect": "^1.20.4",
  24. "@types/mocha": "^5.2.7",
  25. "@types/node": "^18.11.9",
  26. "chai": "^4.3.4",
  27. "chai-as-promised": "^7.1.1",
  28. "mocha": "^6.2.0",
  29. "ts-mocha": "^6.0.0",
  30. "typescript": "^4.9.3"
  31. },
  32. "files": [
  33. "lib/src/main.js",
  34. "lib/src/main.d.ts",
  35. "lib/src/util/*",
  36. "lib/src/RJSVM/*"
  37. ]
  38. }