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 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "rpclibrary",
  3. "version": "1.2.0",
  4. "description": "rpclibrary is a websocket on steroids!",
  5. "main": "./js/Index.js",
  6. "repository": {
  7. "type" : "git",
  8. "url" : "https://gitea.frontblock.me/fw-vendor/rpclibrary"
  9. },
  10. "scripts": {
  11. "tsc": "tsc",
  12. "webpack": "webpack --config ./src/webpack.js",
  13. "backend": "node js/test/TestBackend.js",
  14. "frontend": "node js/test/TestFrontend.js",
  15. "build": "npm run clean && tsc && npm run webpack",
  16. "clean": "rm -rf js",
  17. "test": "mocha js/test/Test.js",
  18. "docs": "typedoc --out docs ./src --readme ./README.md --plugin typedoc-plugin-markdown --mode file --hideBreadcrumbs --hideSources"
  19. },
  20. "author": "frontwork.me",
  21. "license": "MIT",
  22. "devDependencies": {
  23. "@types/expect": "^1.20.4",
  24. "@types/express": "^4.17.0",
  25. "@types/mocha": "^5.2.7",
  26. "@types/node": "^11.13.19",
  27. "chai": "^4.2.0",
  28. "mocha": "^6.2.0",
  29. "terser-webpack-plugin": "^2.1.0",
  30. "ts-loader": "^5.3.3",
  31. "ts-mocha": "^6.0.0",
  32. "typedoc": "^0.15.0",
  33. "typedoc-plugin-markdown": "^2.2.6",
  34. "typescript": "^3.5.3",
  35. "webpack": "^4.40.2",
  36. "webpack-cli": "^3.3.9"
  37. },
  38. "dependencies": {
  39. "bsock": "^0.1.9",
  40. "fs": "0.0.1-security",
  41. "http": "0.0.0",
  42. "path": "^0.12.7",
  43. "uuid": "^3.3.3"
  44. },
  45. "files": [
  46. "js"
  47. ]
  48. }