{ "name": "parse", "version": "2.6.0", "description": "The Parse JavaScript SDK", "homepage": "https://parseplatform.org/", "keywords": [ "cloud", "mobile", "api" ], "license": "BSD-3-Clause", "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", "PATENTS", "README.md" ], "browser": { "react-native": false }, "dependencies": { "@babel/runtime": "7.5.5", "uuid": "3.3.2", "ws": "7.1.1", "xmlhttprequest": "1.8.0" }, "devDependencies": { "@babel/core": "7.5.5", "@babel/plugin-proposal-class-properties": "7.5.5", "@babel/plugin-transform-flow-comments": "7.5.5", "@babel/plugin-transform-flow-strip-types": "7.4.4", "@babel/plugin-transform-runtime": "7.5.5", "@babel/polyfill": "7.4.4", "@babel/preset-env": "7.5.5", "@babel/preset-react": "7.0.0", "@parse/minami": "1.0.0", "babel-core": "7.0.0-bridge.0", "babel-eslint": "10.0.2", "babel-jest": "24.5.0", "babel-plugin-inline-package-json": "2.0.0", "babel-plugin-minify-dead-code-elimination": "0.5.0", "babel-plugin-transform-inline-environment-variables": "0.4.3", "browserify": "16.3.0", "codecov": "3.5.0", "cross-env": "5.2.0", "eslint": "6.1.0", "eslint-plugin-flowtype": "3.12.2", "express": "4.17.1", "gulp": "4.0.2", "gulp-babel": "8.0.0", "gulp-derequire": "2.1.0", "gulp-insert": "0.5.0", "gulp-rename": "1.4.0", "gulp-uglify": "3.0.2", "gulp-watch": "5.0.1", "jasmine": "3.4.0", "jasmine-reporters": "2.3.2", "jest": "24.5.0", "jsdoc": "3.6.3", "jsdoc-babel": "0.5.0", "parse-server": "github:parse-community/parse-server#master", "regenerator-runtime": "0.13.1", "vinyl-source-stream": "2.0.0" }, "scripts": { "build": "./build_releases.sh", "release": "./build_releases.sh && npm publish", "test": "cross-env PARSE_BUILD=node jest", "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" }, "jest": { "automock": true, "collectCoverage": true, "coveragePathIgnorePatterns": [ "/node_modules/", "test_helpers/(.*).js" ], "roots": [ "src/" ], "testPathIgnorePatterns": [ "/node_modules/", "/test_helpers/" ], "transform": { ".*": "./babel-jest.js" }, "setupFilesAfterEnv": [ "./setup-jest.js" ] } }