No Description

package.json 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "react-native-agora",
  3. "version": "1.2.5",
  4. "description": "声网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. },
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/syanbo/react-native-agora.git"
  16. },
  17. "keywords": [
  18. "agora",
  19. "react-native",
  20. "react-native-agora",
  21. "live",
  22. "react",
  23. "Agora",
  24. "video",
  25. "react-native-video"
  26. ],
  27. "author": "syanbo",
  28. "authors": ["https://github.com/syanbo/react-native-agora/graphs/contributors"],
  29. "license": "MIT",
  30. "bugs": {
  31. "url": "https://github.com/syanbo/react-native-agora/issues"
  32. },
  33. "homepage": "https://github.com/syanbo/react-native-agora#readme",
  34. "peerDependencies": {
  35. "react": "16.3.0",
  36. "react-native": "0.57.8"
  37. },
  38. "devDependencies": {
  39. "@types/jest": "^23.3.13",
  40. "@types/react": "^16.7.20",
  41. "@types/react-native": "^0.57.31",
  42. "@types/react-test-renderer": "^16.0.3",
  43. "react-native-typescript-transformer": "^1.2.11",
  44. "tslib": "latest",
  45. "ts-jest": "^23.10.5",
  46. "tslint": "^5.12.1",
  47. "typescript": "^3.2.4"
  48. },
  49. "types": [
  50. "./types.d.ts"
  51. ],
  52. "jest": {
  53. "preset": "react-native",
  54. "moduleFileExtensions": [
  55. "ts",
  56. "tsx",
  57. "js"
  58. ],
  59. "transform": {
  60. "^.+\\.(js)$": "<rootDir>/node_modules/babel-jest",
  61. "\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
  62. },
  63. "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
  64. "testPathIgnorePatterns": [
  65. "\\.snap$",
  66. "<rootDir>/node_modules/"
  67. ],
  68. "cacheDirectory": ".jest/cache"
  69. }
  70. }