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.1KB

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