* Start DB runner from tests * Connect GridstoreAdapter only when needed * removes unused package * better test errors reporting * Adds support for __op.Delete * Better test error reporting * Makes sure all tests can run without crashing * Use xdescribe to skip test suite * Removes unused dependencies * Let volatiles classes be created with PG on start * Do not fail if class dont exist * adds index.spec.js to the pg suite * Use a new config each test to prevent side effects * Enable EmailVerificationToken specs with pg * Makes sure failure output is not cut * Reduces number of ignored tests in ParseObject.spec * Inspect reconfiguration errors * Mark GlobalConfig is incompatible with PG - Problem is with nested updates (param.prop = value) * PG: Nested JSON queries and updates - Adds support for nested json and . operator queries - Adds debug support for PG adapter - Adds loglevel support in helper * Enable working specs in ParseUser * Sets default logLevel in tests to undefined * Adds File type support, retores purchaseValidation specs * Adds support for updating jsonb objects - Restores PushController tests * Proper implementation of deleteByQuery and ORs - Adds ParseInstallation spec to the test suite * xit only failing tests * Nit on ParseAPI spec * add sorting operator * properly bound order keys * reverts describe_only_db behavior * Enables passing tests * Adds basic support for relations, upsertOneObject aliased to createObject * progress on queries options * Fix ACL update related problems * Creates relation tables on class creation * Adds Relation tests * remove flaky tests * use promises instead of CB * disable flaky test * nits * Fixes on schema spec - Next thing is to implemenet geopoint and files correctly * fix failues * Basic GeoPoint support * Adds support for $nearSphere/$maxDistance geopoint queries * enable passing tests * drop tables afterEach for PG, clean up relation tables too * Better initialization/dropTables
82 lines
2.5 KiB
JSON
82 lines
2.5 KiB
JSON
{
|
|
"name": "parse-server",
|
|
"version": "2.2.17",
|
|
"description": "An express module providing a Parse-compatible API server",
|
|
"main": "lib/index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ParsePlatform/parse-server"
|
|
},
|
|
"files": [
|
|
"bin/",
|
|
"lib/",
|
|
"public_html/",
|
|
"views/",
|
|
"LICENSE",
|
|
"PATENTS",
|
|
"README.md"
|
|
],
|
|
"license": "BSD-3-Clause",
|
|
"dependencies": {
|
|
"babel-polyfill": "6.13.0",
|
|
"bcrypt-nodejs": "0.0.3",
|
|
"body-parser": "1.15.2",
|
|
"commander": "2.9.0",
|
|
"deepcopy": "0.6.3",
|
|
"express": "4.14.0",
|
|
"intersect": "1.0.1",
|
|
"lodash": "4.15.0",
|
|
"lru-cache": "4.0.1",
|
|
"mailgun-js": "0.7.10",
|
|
"mime": "1.3.4",
|
|
"mongodb": "2.2.5",
|
|
"multer": "1.2.0",
|
|
"parse": "1.9.1",
|
|
"parse-server-fs-adapter": "1.0.0",
|
|
"parse-server-push-adapter": "1.0.4",
|
|
"parse-server-s3-adapter": "1.0.4",
|
|
"parse-server-simple-mailgun-adapter": "1.0.0",
|
|
"pg-promise": "5.2.7",
|
|
"redis": "2.6.2",
|
|
"request": "2.74.0",
|
|
"semver": "5.2.0",
|
|
"tv4": "1.2.7",
|
|
"winston": "2.2.0",
|
|
"winston-daily-rotate-file": "1.2.0",
|
|
"ws": "1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "6.11.4",
|
|
"babel-core": "6.13.2",
|
|
"babel-plugin-syntax-flow": "6.13.0",
|
|
"babel-plugin-transform-flow-strip-types": "6.8.0",
|
|
"babel-preset-es2015": "6.13.2",
|
|
"babel-preset-stage-0": "6.5.0",
|
|
"babel-register": "6.11.6",
|
|
"cross-env": "2.0.0",
|
|
"deep-diff": "0.3.4",
|
|
"gaze": "1.1.1",
|
|
"istanbul": "1.0.0-alpha.1",
|
|
"jasmine": "2.4.1",
|
|
"mongodb-runner": "3.3.2",
|
|
"nodemon": "1.10.0",
|
|
"request-promise": "^4.1.1"
|
|
},
|
|
"scripts": {
|
|
"dev": "npm run build && node bin/dev",
|
|
"build": "babel src/ -d lib/",
|
|
"test": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=3.2.6} MONGODB_STORAGE_ENGINE=mmapv1 NODE_ENV=test TESTING=1 babel-node $COVERAGE_OPTION ./node_modules/jasmine/bin/jasmine.js",
|
|
"test:win": "npm run pretest && cross-env NODE_ENV=test TESTING=1 babel-node ./node_modules/jasmine/bin/jasmine.js && npm run posttest",
|
|
"coverage": "cross-env COVERAGE_OPTION='./node_modules/.bin/istanbul cover' npm test",
|
|
"coverage:win": "npm run pretest && cross-env NODE_ENV=test TESTING=1 babel-node ./node_modules/babel-istanbul/lib/cli.js cover ./node_modules/jasmine/bin/jasmine.js && npm run posttest",
|
|
"start": "node ./bin/parse-server",
|
|
"prepublish": "npm run build"
|
|
},
|
|
"engines": {
|
|
"node": ">=4.3"
|
|
},
|
|
"bin": {
|
|
"parse-server": "./bin/parse-server"
|
|
}
|
|
}
|