123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- {
- "name": "parse",
- "version": "4.2.0",
- "description": "Parse JavaScript SDK",
- "homepage": "https://parseplatform.org",
- "keywords": [
- "cloud",
- "mobile",
- "api"
- ],
- "license": "Apache-2.0",
- "repository": {
- "type": "git",
- "url": "https://github.com/parse-community/Parse-SDK-JS"
- },
- "bugs": "https://github.com/parse-community/Parse-SDK-JS/issues",
- "files": [
- "index.js",
- "node.js",
- "react-native.js",
- "weapp.js",
- "dist/",
- "lib/",
- "LICENSE",
- "NOTICE",
- "README.md"
- ],
- "browser": {
- "react-native": false
- },
- "dependencies": {
- "@babel/runtime-corejs3": "7.21.0",
- "idb-keyval": "6.2.0",
- "react-native-crypto-js": "1.0.0",
- "uuid": "9.0.0",
- "ws": "8.13.0",
- "xmlhttprequest": "1.8.0"
- },
- "devDependencies": {
- "@babel/core": "7.21.5",
- "@babel/eslint-parser": "7.21.3",
- "@babel/plugin-proposal-class-properties": "7.18.6",
- "@babel/plugin-transform-flow-comments": "7.21.0",
- "@babel/plugin-transform-flow-strip-types": "7.21.0",
- "@babel/plugin-transform-runtime": "7.21.4",
- "@babel/preset-env": "7.21.4",
- "@babel/preset-react": "7.18.6",
- "@parse/minami": "1.0.0",
- "@saithodev/semantic-release-backmerge": "2.1.3",
- "@semantic-release/changelog": "6.0.3",
- "@semantic-release/commit-analyzer": "9.0.2",
- "@semantic-release/git": "10.0.1",
- "@semantic-release/github": "8.0.7",
- "@semantic-release/npm": "9.0.2",
- "@semantic-release/release-notes-generator": "10.0.3",
- "babel-jest": "29.5.0",
- "babel-plugin-inline-package-json": "2.0.0",
- "babel-plugin-minify-dead-code-elimination": "0.5.2",
- "babel-plugin-transform-inline-environment-variables": "0.4.4",
- "browserify": "17.0.0",
- "codecov": "3.8.3",
- "core-js": "3.30.1",
- "cross-env": "7.0.2",
- "eslint": "8.39.0",
- "eslint-plugin-flowtype": "8.0.3",
- "eslint-plugin-jsdoc": "43.0.7",
- "express": "4.18.2",
- "gulp": "4.0.2",
- "gulp-babel": "8.0.0",
- "gulp-derequire": "3.0.0",
- "gulp-insert": "0.5.0",
- "gulp-rename": "2.0.0",
- "gulp-uglify": "3.0.2",
- "gulp-watch": "5.0.1",
- "husky": "8.0.3",
- "jasmine": "4.6.0",
- "jasmine-reporters": "2.5.2",
- "jasmine-spec-reporter": "7.0.0",
- "jest": "29.5.0",
- "jest-environment-jsdom": "29.5.0",
- "jsdoc": "4.0.2",
- "jsdoc-babel": "0.5.0",
- "lint-staged": "13.2.2",
- "metro-react-native-babel-preset": "0.76.3",
- "mongodb-runner": "4.10.0",
- "parse-server": "git+https://github.com/parse-community/parse-server#alpha",
- "prettier": "2.8.8",
- "puppeteer": "19.11.1",
- "regenerator-runtime": "0.13.11",
- "semantic-release": "19.0.5",
- "vinyl-source-stream": "2.0.0"
- },
- "optionalDependencies": {
- "crypto-js": "4.1.1"
- },
- "scripts": {
- "build": "node build_releases.js",
- "release": "node build_releases.js && npm publish",
- "test": "cross-env PARSE_BUILD=node jest",
- "test:mongodb": "npm run test:mongodb:runnerstart && npm run integration",
- "test:mongodb:runnerstart": "mongodb-runner start",
- "posttest:mongodb": "mongodb-runner stop",
- "lint": "eslint --cache src/ integration/",
- "lint:fix": "eslint --fix --cache src/ integration/",
- "watch": "cross-env PARSE_BUILD=${PARSE_BUILD} gulp watch",
- "watch:browser": "cross-env PARSE_BUILD=browser npm run watch",
- "watch:node": "cross-env PARSE_BUILD=node npm run watch",
- "watch:react-native": "cross-env PARSE_BUILD=react-native npm run watch",
- "integration": "cross-env TESTING=1 jasmine --config=jasmine.json",
- "docs": "jsdoc -c ./jsdoc-conf.json ./src",
- "prepare": "npm run build",
- "release_docs": "./release_docs.sh",
- "gulp": "gulp",
- "prettier": "prettier --write '{src,integration}/{**/*,*}.js' && npm run lint:fix",
- "cross-env": "cross-env"
- },
- "husky": {
- "hooks": {
- "pre-commit": "lint-staged"
- }
- },
- "lint-staged": {
- "{src,integration}/{**/*,*}.js": [
- "prettier --write",
- "eslint --fix --cache",
- "git add"
- ]
- },
- "engines": {
- "node": ">=14.21.0 <17 || >=18 <20"
- },
- "jest": {
- "automock": true,
- "collectCoverage": true,
- "coveragePathIgnorePatterns": [
- "/node_modules/",
- "test_helpers/(.*).js"
- ],
- "roots": [
- "src/"
- ],
- "testPathIgnorePatterns": [
- "/node_modules/",
- "/test_helpers/"
- ],
- "transform": {
- ".*": "./babel-jest.js"
- },
- "transformIgnorePatterns": [
- "/node_modules/",
- "package.json"
- ],
- "testEnvironment": "jsdom"
- }
- }
|