| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- {
- "name": "parse",
- "version": "3.5.1",
- "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-corejs3": "7.17.8",
- "@babel/runtime": "7.18.0",
- "idb-keyval": "6.0.3",
- "react-native-crypto-js": "1.0.0",
- "uuid": "3.4.0",
- "ws": "8.6.0",
- "xmlhttprequest": "1.8.0"
- },
- "devDependencies": {
- "@babel/core": "7.10.2",
- "@babel/plugin-proposal-class-properties": "7.10.1",
- "@babel/plugin-transform-flow-comments": "7.10.1",
- "@babel/plugin-transform-flow-strip-types": "7.10.1",
- "@babel/plugin-transform-runtime": "7.10.1",
- "@babel/preset-env": "7.10.2",
- "@babel/preset-react": "7.10.1",
- "@parse/minami": "1.0.0",
- "@saithodev/semantic-release-backmerge": "2.1.2",
- "@semantic-release/changelog": "5.0.1",
- "@semantic-release/commit-analyzer": "8.0.1",
- "@semantic-release/git": "9.0.0",
- "@semantic-release/github": "7.2.3",
- "@semantic-release/npm": "7.1.3",
- "@semantic-release/release-notes-generator": "9.0.3",
- "babel-eslint": "10.1.0",
- "babel-jest": "24.9.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.3",
- "browserify": "16.5.1",
- "codecov": "3.7.1",
- "core-js": "3.6.5",
- "cross-env": "7.0.2",
- "eslint": "6.8.0",
- "eslint-plugin-flowtype": "5.1.2",
- "eslint-plugin-jsdoc": "30.7.3",
- "express": "4.17.1",
- "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": "4.3.8",
- "jasmine": "3.5.0",
- "jasmine-reporters": "2.3.2",
- "jasmine-spec-reporter": "6.0.0",
- "jest": "24.9.0",
- "jsdoc": "3.6.3",
- "jsdoc-babel": "0.5.0",
- "lint-staged": "10.5.3",
- "metro-react-native-babel-preset": "0.59.0",
- "parse-server": "git+https://github.com/parse-community/parse-server#alpha",
- "prettier": "2.2.1",
- "puppeteer": "19.2.2",
- "regenerator-runtime": "0.13.5",
- "semantic-release": "19.0.3",
- "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",
- "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"
- ]
- },
- "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"
- ],
- "setupFilesAfterEnv": [
- "./setup-jest.js"
- ]
- }
- }
|