package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. {
  2. "name": "parse",
  3. "version": "2.6.0",
  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": "7.5.5",
  33. "uuid": "3.3.2",
  34. "ws": "7.1.1",
  35. "xmlhttprequest": "1.8.0"
  36. },
  37. "devDependencies": {
  38. "@babel/core": "7.5.5",
  39. "@babel/plugin-proposal-class-properties": "7.5.5",
  40. "@babel/plugin-transform-flow-comments": "7.5.5",
  41. "@babel/plugin-transform-flow-strip-types": "7.4.4",
  42. "@babel/plugin-transform-runtime": "7.5.5",
  43. "@babel/polyfill": "7.4.4",
  44. "@babel/preset-env": "7.5.5",
  45. "@babel/preset-react": "7.0.0",
  46. "@parse/minami": "1.0.0",
  47. "babel-core": "7.0.0-bridge.0",
  48. "babel-eslint": "10.0.2",
  49. "babel-jest": "24.5.0",
  50. "babel-plugin-inline-package-json": "2.0.0",
  51. "babel-plugin-minify-dead-code-elimination": "0.5.0",
  52. "babel-plugin-transform-inline-environment-variables": "0.4.3",
  53. "browserify": "16.3.0",
  54. "codecov": "3.5.0",
  55. "cross-env": "5.2.0",
  56. "eslint": "6.1.0",
  57. "eslint-plugin-flowtype": "3.12.2",
  58. "express": "4.17.1",
  59. "gulp": "4.0.2",
  60. "gulp-babel": "8.0.0",
  61. "gulp-derequire": "2.1.0",
  62. "gulp-insert": "0.5.0",
  63. "gulp-rename": "1.4.0",
  64. "gulp-uglify": "3.0.2",
  65. "gulp-watch": "5.0.1",
  66. "jasmine": "3.4.0",
  67. "jasmine-reporters": "2.3.2",
  68. "jest": "24.5.0",
  69. "jsdoc": "3.6.3",
  70. "jsdoc-babel": "0.5.0",
  71. "parse-server": "github:parse-community/parse-server#master",
  72. "regenerator-runtime": "0.13.1",
  73. "vinyl-source-stream": "2.0.0"
  74. },
  75. "scripts": {
  76. "build": "./build_releases.sh",
  77. "release": "./build_releases.sh && npm publish",
  78. "test": "cross-env PARSE_BUILD=node jest",
  79. "lint": "eslint --cache src/ integration/",
  80. "lint:fix": "eslint --fix --cache src/ integration/",
  81. "watch": "cross-env PARSE_BUILD=${PARSE_BUILD} gulp watch",
  82. "watch:browser": "cross-env PARSE_BUILD=browser npm run watch",
  83. "watch:node": "cross-env PARSE_BUILD=node npm run watch",
  84. "watch:react-native": "cross-env PARSE_BUILD=react-native npm run watch",
  85. "integration": "cross-env TESTING=1 jasmine --config=jasmine.json",
  86. "docs": "jsdoc -c ./jsdoc-conf.json ./src",
  87. "prepare": "npm run build",
  88. "release_docs": "./release_docs.sh"
  89. },
  90. "jest": {
  91. "automock": true,
  92. "collectCoverage": true,
  93. "coveragePathIgnorePatterns": [
  94. "/node_modules/",
  95. "test_helpers/(.*).js"
  96. ],
  97. "roots": [
  98. "src/"
  99. ],
  100. "testPathIgnorePatterns": [
  101. "/node_modules/",
  102. "/test_helpers/"
  103. ],
  104. "transform": {
  105. ".*": "./babel-jest.js"
  106. },
  107. "setupFilesAfterEnv": [
  108. "./setup-jest.js"
  109. ]
  110. }
  111. }