parse
Version:
Parse JavaScript SDK
161 lines (160 loc) • 4.88 kB
JSON
{
"name": "parse",
"version": "6.1.1",
"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/",
"types/",
"LICENSE",
"NOTICE",
"README.md"
],
"types": "types/index.d.ts",
"browser": {
"react-native": false
},
"dependencies": {
"@babel/runtime-corejs3": "7.27.0",
"idb-keyval": "6.2.1",
"react-native-crypto-js": "1.0.0",
"uuid": "10.0.0",
"ws": "8.18.1",
"xmlhttprequest": "1.8.0"
},
"devDependencies": {
"@babel/core": "7.26.10",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-transform-runtime": "7.26.10",
"@babel/preset-env": "7.26.9",
"@babel/preset-react": "7.26.3",
"@babel/preset-typescript": "7.27.0",
"@eslint/js": "9.23.0",
"@parse/minami": "git+https://github.com/parse-community/minami#main",
"@saithodev/semantic-release-backmerge": "4.0.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.1",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.3",
"@types/facebook-js-sdk": "3.3.11",
"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.41.0",
"cross-env": "7.0.2",
"eslint": "9.23.0",
"eslint-plugin-expect-type": "0.6.2",
"eslint-plugin-jsdoc": "50.6.9",
"express": "4.21.2",
"gulp": "5.0.0",
"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": "9.1.7",
"jasmine": "5.6.0",
"jasmine-reporters": "2.5.2",
"jasmine-spec-reporter": "7.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jsdoc": "4.0.4",
"jsdoc-babel": "0.5.0",
"lint-staged": "15.5.0",
"madge": "8.0.0",
"metro-react-native-babel-preset": "0.77.0",
"mongodb-runner": "5.8.0",
"parse-server": "7.3.0",
"prettier": "3.5.2",
"puppeteer": "24.4.0",
"regenerator-runtime": "0.14.1",
"semantic-release": "24.2.3",
"typescript-eslint": "8.28.0",
"vinyl-source-stream": "2.0.0"
},
"optionalDependencies": {
"crypto-js": "4.2.0"
},
"scripts": {
"build": "node build_releases.js",
"build:types": "tsc",
"ci:typecheck": "node ./ci/typecheck.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 -- --port 27017",
"posttest:mongodb": "mongodb-runner stop --all",
"lint": "eslint --cache src/ integration/",
"lint:fix": "eslint --fix --cache src/ integration/",
"test:types": "eslint types/tests.ts -c ./types/eslint.config.mjs",
"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",
"watch:ts": "tsc --watch",
"integration": "cross-env TESTING=1 jasmine --config=jasmine.json",
"docs": "jsdoc -c ./jsdoc-conf.json ./src",
"madge:circular": "madge ./src --extensions js,ts --circular",
"prepare": "husky && npm run build",
"pre-commit": "lint-staged",
"release_docs": "./release_docs.sh",
"gulp": "gulp",
"prettier": "prettier --write '{src,integration,types}/{**/*,*}.{js,ts}' && npm run lint:fix",
"cross-env": "cross-env"
},
"lint-staged": {
"{src,integration}/{**/*,*}.{js,ts}": [
"prettier --write",
"eslint --fix --cache",
"git add"
]
},
"engines": {
"node": "18 || 19 || 20 || 22"
},
"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"
}
}