package.json 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. {
  2. "name": "parse",
  3. "version": "5.3.0",
  4. "description": "Parse JavaScript SDK",
  5. "homepage": "https://parseplatform.org",
  6. "keywords": [
  7. "cloud",
  8. "mobile",
  9. "api"
  10. ],
  11. "license": "Apache-2.0",
  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. "NOTICE",
  26. "README.md"
  27. ],
  28. "browser": {
  29. "react-native": false
  30. },
  31. "dependencies": {
  32. "@babel/runtime-corejs3": "7.24.7",
  33. "idb-keyval": "6.2.1",
  34. "react-native-crypto-js": "1.0.0",
  35. "uuid": "10.0.0",
  36. "ws": "8.17.1",
  37. "xmlhttprequest": "1.8.0"
  38. },
  39. "devDependencies": {
  40. "@babel/core": "7.24.7",
  41. "@babel/plugin-proposal-class-properties": "7.18.6",
  42. "@babel/plugin-transform-runtime": "7.24.7",
  43. "@babel/preset-env": "7.24.7",
  44. "@babel/preset-react": "7.22.5",
  45. "@babel/preset-typescript": "7.24.7",
  46. "@definitelytyped/dtslint": "0.0.163",
  47. "@parse/minami": "git+https://github.com/parse-community/minami#main",
  48. "@saithodev/semantic-release-backmerge": "4.0.1",
  49. "@semantic-release/changelog": "6.0.3",
  50. "@semantic-release/commit-analyzer": "13.0.0",
  51. "@semantic-release/git": "10.0.1",
  52. "@semantic-release/github": "10.0.7",
  53. "@semantic-release/npm": "12.0.1",
  54. "@semantic-release/release-notes-generator": "14.0.1",
  55. "@types/facebook-js-sdk": "3.3.11",
  56. "babel-jest": "29.5.0",
  57. "babel-plugin-inline-package-json": "2.0.0",
  58. "babel-plugin-minify-dead-code-elimination": "0.5.2",
  59. "babel-plugin-transform-inline-environment-variables": "0.4.4",
  60. "browserify": "17.0.0",
  61. "codecov": "3.8.3",
  62. "core-js": "3.37.1",
  63. "cross-env": "7.0.2",
  64. "eslint": "8.56.0",
  65. "eslint-plugin-jsdoc": "48.5.0",
  66. "express": "4.18.2",
  67. "gulp": "5.0.0",
  68. "gulp-babel": "8.0.0",
  69. "gulp-derequire": "3.0.0",
  70. "gulp-insert": "0.5.0",
  71. "gulp-rename": "2.0.0",
  72. "gulp-uglify": "3.0.2",
  73. "gulp-watch": "5.0.1",
  74. "husky": "9.0.11",
  75. "jasmine": "5.1.0",
  76. "jasmine-reporters": "2.5.2",
  77. "jasmine-spec-reporter": "7.0.0",
  78. "jest": "29.7.0",
  79. "jest-environment-jsdom": "29.7.0",
  80. "jsdoc": "4.0.3",
  81. "jsdoc-babel": "0.5.0",
  82. "lint-staged": "15.2.7",
  83. "madge": "7.0.0",
  84. "metro-react-native-babel-preset": "0.77.0",
  85. "mongodb-runner": "5.6.2",
  86. "parse-server": "7.1.0",
  87. "prettier": "3.3.2",
  88. "puppeteer": "20.4.0",
  89. "regenerator-runtime": "0.14.1",
  90. "semantic-release": "24.0.0",
  91. "vinyl-source-stream": "2.0.0"
  92. },
  93. "optionalDependencies": {
  94. "crypto-js": "4.2.0"
  95. },
  96. "scripts": {
  97. "build": "node build_releases.js",
  98. "build:types": "tsc && prettier --write 'types/{**/*,*}.ts' && npm run lint:fix",
  99. "release": "node build_releases.js && npm publish",
  100. "test": "cross-env PARSE_BUILD=node jest",
  101. "test:mongodb": "npm run test:mongodb:runnerstart && npm run integration",
  102. "test:mongodb:runnerstart": "mongodb-runner start -- --port 27017",
  103. "test:types": "dtslint --expectOnly types",
  104. "posttest:mongodb": "mongodb-runner stop --all",
  105. "lint": "eslint --cache src/ integration/ --ext .js --ext .ts",
  106. "lint:fix": "eslint --fix --cache src/ integration/ --ext .js --ext .ts",
  107. "lint:types": "dtslint types",
  108. "watch": "cross-env PARSE_BUILD=${PARSE_BUILD} gulp watch",
  109. "watch:browser": "cross-env PARSE_BUILD=browser npm run watch",
  110. "watch:node": "cross-env PARSE_BUILD=node npm run watch",
  111. "watch:react-native": "cross-env PARSE_BUILD=react-native npm run watch",
  112. "integration": "cross-env TESTING=1 jasmine --config=jasmine.json",
  113. "docs": "jsdoc -c ./jsdoc-conf.json ./src",
  114. "madge:circular": "madge ./src --extensions js,ts --circular",
  115. "prepare": "husky && npm run build",
  116. "pre-commit": "lint-staged",
  117. "release_docs": "./release_docs.sh",
  118. "gulp": "gulp",
  119. "prettier": "prettier --write '{src,integration,types}/{**/*,*}.{js,ts}' && npm run lint:fix",
  120. "cross-env": "cross-env"
  121. },
  122. "lint-staged": {
  123. "{src,integration}/{**/*,*}.{js,ts}": [
  124. "prettier --write",
  125. "eslint --fix --cache",
  126. "git add"
  127. ]
  128. },
  129. "engines": {
  130. "node": "18 || 19 || 20 || 22"
  131. },
  132. "jest": {
  133. "automock": true,
  134. "collectCoverage": true,
  135. "coveragePathIgnorePatterns": [
  136. "/node_modules/",
  137. "test_helpers/(.*).js"
  138. ],
  139. "roots": [
  140. "src/"
  141. ],
  142. "testPathIgnorePatterns": [
  143. "/node_modules/",
  144. "/test_helpers/"
  145. ],
  146. "transform": {
  147. ".*": "./babel-jest.js"
  148. },
  149. "transformIgnorePatterns": [
  150. "/node_modules/",
  151. "package.json"
  152. ],
  153. "testEnvironment": "jsdom"
  154. }
  155. }