* 'master' of https://github.com/ParsePlatform/parse-server: Remove limit when counting results. beforeSave changes should propagate to the response Fix delete relation field when _Join collection not exist Test empty authData block on login for #413 Fix for related query on non-existing column Fix Markdown format: make checkboxes visible Fix create wrong _Session for Facebook login Modified the npm dev script to support Windows Improves tests, ensure unicity of roleIds Fix reversed roles lookup Fix leak warnings in tests, use mongodb-runner from node_modules Improves documentation, add loading tests Improves loading of Push Adapter, fix loading of S3Adapter Adds public_html and views for packaging Removes shebang for windows Better support for windows builds Fix add field to system schema Convert Schema.js to ES6 class.
75 lines
2.1 KiB
JSON
75 lines
2.1 KiB
JSON
{
|
|
"name": "parse-server",
|
|
"version": "2.1.4",
|
|
"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": {
|
|
"apn": "^1.7.5",
|
|
"aws-sdk": "~2.2.33",
|
|
"babel-polyfill": "^6.5.0",
|
|
"babel-runtime": "^6.5.0",
|
|
"bcrypt-nodejs": "0.0.3",
|
|
"body-parser": "^1.14.2",
|
|
"colors": "^1.1.2",
|
|
"commander": "^2.9.0",
|
|
"deepcopy": "^0.6.1",
|
|
"express": "^4.13.4",
|
|
"gcloud": "^0.28.0",
|
|
"mailgun-js": "^0.7.7",
|
|
"mime": "^1.3.4",
|
|
"mongodb": "~2.1.0",
|
|
"multer": "^1.1.0",
|
|
"node-gcm": "^0.14.0",
|
|
"parse": "^1.7.0",
|
|
"request": "^2.65.0",
|
|
"winston": "^2.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.5.1",
|
|
"babel-core": "^6.5.1",
|
|
"babel-istanbul": "^0.6.0",
|
|
"babel-plugin-transform-flow-strip-types": "^6.5.0",
|
|
"babel-preset-es2015": "^6.5.0",
|
|
"babel-preset-stage-0": "^6.5.0",
|
|
"babel-register": "^6.5.1",
|
|
"codecov": "^1.0.1",
|
|
"cross-env": "^1.0.7",
|
|
"deep-diff": "^0.3.3",
|
|
"flow-bin": "^0.22.0",
|
|
"gaze": "^0.5.2",
|
|
"jasmine": "^2.3.2",
|
|
"mongodb-runner": "^3.1.15",
|
|
"nodemon": "^1.8.1"
|
|
},
|
|
"scripts": {
|
|
"dev": "npm run build && node bin/dev",
|
|
"build": "./node_modules/.bin/babel src/ -d lib/",
|
|
"pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=3.0.8} ./node_modules/.bin/mongodb-runner start",
|
|
"test": "cross-env NODE_ENV=test TESTING=1 ./node_modules/.bin/babel-node $COVERAGE_OPTION ./node_modules/jasmine/bin/jasmine.js",
|
|
"posttest": "./node_modules/.bin/mongodb-runner stop",
|
|
"coverage": "cross-env COVERAGE_OPTION='./node_modules/babel-istanbul/lib/cli.js cover -x **/spec/**' npm test",
|
|
"start": "node ./bin/parse-server",
|
|
"prepublish": "npm run build"
|
|
},
|
|
"engines": {
|
|
"node": ">=4.3"
|
|
},
|
|
"bin": {
|
|
"parse-server": "./bin/parse-server"
|
|
}
|
|
}
|