package.json 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. {
  2. "name": "parse",
  3. "version": "3.5.1",
  4. "description": "The Parse JavaScript SDK",
  5. "homepage": "https://parseplatform.org/",
  6. "keywords": [
  7. "cloud",
  8. "mobile",
  9. "api"
  10. ],
  11. "license": "BSD-3-Clause",
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/parse-community/Parse-SDK-JS"
  15. },
  16. "bugs": "https://github.com/parse-community/Parse-SDK-JS/issues",
  17. "files": [
  18. "index.js",
  19. "node.js",
  20. "react-native.js",
  21. "weapp.js",
  22. "dist/",
  23. "lib/",
  24. "LICENSE",
  25. "PATENTS",
  26. "README.md"
  27. ],
  28. "browser": {
  29. "react-native": false
  30. },
  31. "dependencies": {
  32. "@babel/runtime-corejs3": "7.17.8",
  33. "@babel/runtime": "7.18.0",
  34. "idb-keyval": "6.0.3",
  35. "react-native-crypto-js": "1.0.0",
  36. "uuid": "3.4.0",
  37. "ws": "8.6.0",
  38. "xmlhttprequest": "1.8.0"
  39. },
  40. "devDependencies": {
  41. "@babel/core": "7.10.2",
  42. "@babel/plugin-proposal-class-properties": "7.10.1",
  43. "@babel/plugin-transform-flow-comments": "7.10.1",
  44. "@babel/plugin-transform-flow-strip-types": "7.10.1",
  45. "@babel/plugin-transform-runtime": "7.10.1",
  46. "@babel/preset-env": "7.10.2",
  47. "@babel/preset-react": "7.10.1",
  48. "@parse/minami": "1.0.0",
  49. "@saithodev/semantic-release-backmerge": "2.1.2",
  50. "@semantic-release/changelog": "5.0.1",
  51. "@semantic-release/commit-analyzer": "8.0.1",
  52. "@semantic-release/git": "9.0.0",
  53. "@semantic-release/github": "7.2.3",
  54. "@semantic-release/npm": "7.1.3",
  55. "@semantic-release/release-notes-generator": "9.0.3",
  56. "babel-eslint": "10.1.0",
  57. "babel-jest": "24.9.0",
  58. "babel-plugin-inline-package-json": "2.0.0",
  59. "babel-plugin-minify-dead-code-elimination": "0.5.2",
  60. "babel-plugin-transform-inline-environment-variables": "0.4.3",
  61. "browserify": "16.5.1",
  62. "codecov": "3.7.1",
  63. "core-js": "3.6.5",
  64. "cross-env": "7.0.2",
  65. "eslint": "6.8.0",
  66. "eslint-plugin-flowtype": "5.1.2",
  67. "eslint-plugin-jsdoc": "30.7.3",
  68. "express": "4.17.1",
  69. "gulp": "4.0.2",
  70. "gulp-babel": "8.0.0",
  71. "gulp-derequire": "3.0.0",
  72. "gulp-insert": "0.5.0",
  73. "gulp-rename": "2.0.0",
  74. "gulp-uglify": "3.0.2",
  75. "gulp-watch": "5.0.1",
  76. "husky": "4.3.8",
  77. "jasmine": "3.5.0",
  78. "jasmine-reporters": "2.3.2",
  79. "jasmine-spec-reporter": "6.0.0",
  80. "jest": "24.9.0",
  81. "jsdoc": "3.6.3",
  82. "jsdoc-babel": "0.5.0",
  83. "lint-staged": "10.5.3",
  84. "metro-react-native-babel-preset": "0.59.0",
  85. "parse-server": "git+https://github.com/parse-community/parse-server#alpha",
  86. "prettier": "2.2.1",
  87. "puppeteer": "19.2.2",
  88. "regenerator-runtime": "0.13.5",
  89. "semantic-release": "19.0.3",
  90. "vinyl-source-stream": "2.0.0"
  91. },
  92. "optionalDependencies": {
  93. "crypto-js": "4.1.1"
  94. },
  95. "scripts": {
  96. "build": "node build_releases.js",
  97. "release": "node build_releases.js && npm publish",
  98. "test": "cross-env PARSE_BUILD=node jest",
  99. "lint": "eslint --cache src/ integration/",
  100. "lint:fix": "eslint --fix --cache src/ integration/",
  101. "watch": "cross-env PARSE_BUILD=${PARSE_BUILD} gulp watch",
  102. "watch:browser": "cross-env PARSE_BUILD=browser npm run watch",
  103. "watch:node": "cross-env PARSE_BUILD=node npm run watch",
  104. "watch:react-native": "cross-env PARSE_BUILD=react-native npm run watch",
  105. "integration": "cross-env TESTING=1 jasmine --config=jasmine.json",
  106. "docs": "jsdoc -c ./jsdoc-conf.json ./src",
  107. "prepare": "npm run build",
  108. "release_docs": "./release_docs.sh",
  109. "gulp": "gulp",
  110. "prettier": "prettier --write '{src,integration}/{**/*,*}.js' && npm run lint:fix",
  111. "cross-env": "cross-env"
  112. },
  113. "husky": {
  114. "hooks": {
  115. "pre-commit": "lint-staged"
  116. }
  117. },
  118. "lint-staged": {
  119. "{src,integration}/{**/*,*}.js": [
  120. "prettier --write",
  121. "eslint --fix --cache",
  122. "git add"
  123. ]
  124. },
  125. "jest": {
  126. "automock": true,
  127. "collectCoverage": true,
  128. "coveragePathIgnorePatterns": [
  129. "/node_modules/",
  130. "test_helpers/(.*).js"
  131. ],
  132. "roots": [
  133. "src/"
  134. ],
  135. "testPathIgnorePatterns": [
  136. "/node_modules/",
  137. "/test_helpers/"
  138. ],
  139. "transform": {
  140. ".*": "./babel-jest.js"
  141. },
  142. "transformIgnorePatterns": [
  143. "/node_modules/",
  144. "package.json"
  145. ],
  146. "setupFilesAfterEnv": [
  147. "./setup-jest.js"
  148. ]
  149. }
  150. }