No Description

package.json 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "react-native-agora",
  3. "version": "2.4.0-alpha-1",
  4. "description": "React Native around the Agora RTC SDKs for Android and iOS agora",
  5. "summary": "agora native sdk for react-native",
  6. "main": "lib/index.js",
  7. "scripts": {
  8. "pu": "npm publish",
  9. "test": "echo \"Error: no test specified\" && exit 1",
  10. "lint": "tslint",
  11. "build": "tsc",
  12. "doc": "typedoc --out docs/api ./src"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/syanbo/react-native-agora.git"
  17. },
  18. "keywords": [
  19. "agora",
  20. "react-native",
  21. "react-native-agora",
  22. "live",
  23. "react",
  24. "Agora",
  25. "video",
  26. "react-native-video"
  27. ],
  28. "author": "syanbo",
  29. "authors": [
  30. "https://github.com/syanbo/react-native-agora/graphs/contributors"
  31. ],
  32. "license": "MIT",
  33. "bugs": {
  34. "url": "https://github.com/syanbo/react-native-agora/issues"
  35. },
  36. "homepage": "https://github.com/syanbo/react-native-agora#readme",
  37. "peerDependencies": {
  38. "react": ">=16.6.0",
  39. "react-native": ">=0.58.0"
  40. },
  41. "devDependencies": {
  42. "@types/jest": "^23.3.13",
  43. "@types/react": "^16.7.20",
  44. "@types/react-native": "^0.57.31",
  45. "@types/react-test-renderer": "^16.0.3",
  46. "react": "16.7.0",
  47. "react-native": "0.58.3",
  48. "react-native-typescript-transformer": "^1.2.11",
  49. "ts-jest": "^23.10.5",
  50. "tslint": "^5.12.1",
  51. "typedoc": "^0.14.2",
  52. "typescript": "^3.2.4"
  53. },
  54. "types": [
  55. "./types.d.ts"
  56. ],
  57. "jest": {
  58. "preset": "react-native",
  59. "moduleFileExtensions": [
  60. "ts",
  61. "tsx",
  62. "js"
  63. ],
  64. "transform": {
  65. "^.+\\.(js)$": "<rootDir>/node_modules/babel-jest",
  66. "\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
  67. },
  68. "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
  69. "testPathIgnorePatterns": [
  70. "\\.snap$",
  71. "<rootDir>/node_modules/"
  72. ],
  73. "cacheDirectory": ".jest/cache"
  74. },
  75. "dependencies": {
  76. "tslib": "^1.9.3"
  77. }
  78. }