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 800B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "rpclibrary",
  3. "version": "1.0.1",
  4. "description": "",
  5. "scripts": {
  6. "tsc": "tsc",
  7. "webpack": "webpack",
  8. "build-lib": "npm run webpack --config ./src/webpack.js",
  9. "build-test": "npm run webpack --config ./test/webpack.js",
  10. "build": "npm run clean && npm run tsc && npm run build-lib && npm run build-test",
  11. "clean": "rm -rf lib ./*.js ./*.d.ts"
  12. },
  13. "author": "",
  14. "license": "ISC",
  15. "devDependencies": {
  16. "@types/express": "^4.17.0",
  17. "@types/node": "^11.13.19",
  18. "@types/semver": "^6.0.1",
  19. "terser-webpack-plugin": "^1.4.1",
  20. "ts-loader": "^5.3.3",
  21. "typescript": "^3.5.3",
  22. "webpack": "^4.39.2",
  23. "webpack-cli": "^3.3.5"
  24. },
  25. "dependencies": {
  26. "bsock": "^0.1.9",
  27. "uuid": "^3.3.3"
  28. },
  29. "files": [
  30. "lib/*.js"
  31. ]
  32. }