仲裁视频会议H5

package.json 917B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "sdp",
  3. "version": "3.2.0",
  4. "description": "SDP parsing and serialization utilities",
  5. "main": "dist/sdp.js",
  6. "module": "sdp.js",
  7. "typings": "sdp.d.ts",
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/fippo/sdp.git"
  11. },
  12. "scripts": {
  13. "build": "babel sdp.js --presets babel-preset-env --out-dir dist",
  14. "coverage": "c8 report --reporter=text-lcov > coverage.lcov",
  15. "prepare": "npm run build",
  16. "test": "eslint sdp.js test/sdp.js && c8 --reporter html mocha test/sdp.js"
  17. },
  18. "keywords": [
  19. "sdp",
  20. "webrtc"
  21. ],
  22. "author": "Philipp Hancke",
  23. "license": "MIT",
  24. "devDependencies": {
  25. "babel-cli": "^6.26.0",
  26. "babel-core": "^6.26.3",
  27. "babel-preset-env": "^1.7.0",
  28. "c8": "^7.12.0",
  29. "chai": "^4.3.7",
  30. "codecov": "^3.6.5",
  31. "eslint": "^8.31.0",
  32. "mocha": "^10.2.0",
  33. "sinon": "^15.0.1",
  34. "sinon-chai": "^3.7.0"
  35. }
  36. }