{ "name": "parse-server", "version": "2.3.3", "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": { "bcryptjs": "2.4.3", "body-parser": "1.16.1", "commander": "2.9.0", "deepcopy": "0.6.3", "express": "4.14.1", "intersect": "1.0.1", "lodash": "4.17.4", "lru-cache": "4.0.2", "mime": "1.3.4", "mongodb": "2.2.24", "multer": "1.3.0", "parse": "1.9.2", "parse-server-fs-adapter": "1.0.1", "parse-server-push-adapter": "1.2.0", "parse-server-s3-adapter": "1.0.6", "parse-server-simple-mailgun-adapter": "1.0.0", "pg-promise": "5.5.6", "redis": "2.6.5", "request": "2.79.0", "semver": "5.2.0", "tv4": "1.2.7", "winston": "2.3.1", "winston-daily-rotate-file": "1.4.4", "ws": "2.0.3" }, "devDependencies": { "babel-cli": "6.22.2", "babel-core": "6.22.1", "babel-eslint": "^7.1.1", "babel-plugin-syntax-flow": "6.13.0", "babel-plugin-transform-flow-strip-types": "6.22.0", "babel-preset-es2015": "6.22.0", "babel-preset-stage-0": "6.22.0", "babel-register": "6.22.0", "bcrypt-nodejs": "0.0.3", "cross-env": "3.1.4", "deep-diff": "0.3.4", "eslint": "^3.10.2", "eslint-plugin-flowtype": "^2.25.0", "gaze": "1.1.1", "istanbul": "1.0.0-alpha.1", "jasmine": "2.5.3", "jasmine-spec-reporter": "^3.1.0", "mongodb-runner": "3.4.0", "nodemon": "1.11.0", "request-promise": "4.1.1" }, "scripts": { "dev": "npm run build && node bin/dev", "lint": "eslint --cache ./", "build": "babel src/ -d lib/", "pretest": "npm run lint", "test": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=3.2.6} MONGODB_STORAGE_ENGINE=mmapv1 NODE_ENV=test TESTING=1 $COVERAGE_OPTION jasmine", "test:win": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=3.2.6} MONGODB_STORAGE_ENGINE=mmapv1 NODE_ENV=test TESTING=1 jasmine", "coverage": "cross-env COVERAGE_OPTION='./node_modules/.bin/istanbul cover' npm test", "coverage:win": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=3.2.6} MONGODB_STORAGE_ENGINE=mmapv1 NODE_ENV=test TESTING=1 node ./node_modules/istanbul/lib/cli.js cover ./node_modules/jasmine/bin/jasmine.js", "start": "node ./bin/parse-server", "prepublish": "npm run build" }, "engines": { "node": ">=4.6" }, "bin": { "parse-server": "./bin/parse-server" }, "optionalDependencies": { "bcrypt": "1.0.2", "uws": "^0.12.0" } }