2016-01-28 10:58:12 -08:00
|
|
|
{
|
|
|
|
|
"name": "parse-server",
|
2016-02-19 13:04:49 -08:00
|
|
|
"version": "2.1.2",
|
2016-01-28 10:58:12 -08:00
|
|
|
"description": "An express module providing a Parse-compatible API server",
|
2016-02-08 20:20:21 -08:00
|
|
|
"main": "lib/index.js",
|
2016-01-28 10:58:12 -08:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/ParsePlatform/parse-server"
|
|
|
|
|
},
|
2016-01-29 14:23:58 -08:00
|
|
|
"license": "BSD-3-Clause",
|
2016-01-28 10:58:12 -08:00
|
|
|
"dependencies": {
|
2016-02-04 00:08:31 -08:00
|
|
|
"apn": "^1.7.5",
|
2016-01-31 22:27:33 -08:00
|
|
|
"aws-sdk": "~2.2.33",
|
2016-02-20 23:45:54 -08:00
|
|
|
"babel-polyfill": "^6.5.0",
|
2016-02-08 20:20:21 -08:00
|
|
|
"babel-runtime": "^6.5.0",
|
2016-01-31 16:54:16 -08:00
|
|
|
"bcrypt-nodejs": "0.0.3",
|
2016-02-03 02:45:46 -08:00
|
|
|
"body-parser": "^1.14.2",
|
|
|
|
|
"deepcopy": "^0.6.1",
|
|
|
|
|
"express": "^4.13.4",
|
2016-01-28 10:58:12 -08:00
|
|
|
"mime": "^1.3.4",
|
2016-02-03 02:45:46 -08:00
|
|
|
"mongodb": "~2.1.0",
|
|
|
|
|
"multer": "^1.1.0",
|
2016-02-08 20:20:21 -08:00
|
|
|
"node-gcm": "^0.14.0",
|
2016-02-03 02:45:46 -08:00
|
|
|
"parse": "^1.7.0",
|
2016-02-04 08:18:19 -08:00
|
|
|
"request": "^2.65.0",
|
|
|
|
|
"winston": "^2.1.1"
|
2016-01-28 10:58:12 -08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2016-02-08 20:20:21 -08:00
|
|
|
"babel-cli": "^6.5.1",
|
|
|
|
|
"babel-core": "^6.5.1",
|
|
|
|
|
"babel-istanbul": "^0.6.0",
|
|
|
|
|
"babel-preset-es2015": "^6.5.0",
|
|
|
|
|
"babel-register": "^6.5.1",
|
2016-02-02 21:15:57 -08:00
|
|
|
"codecov": "^1.0.1",
|
2016-02-09 13:12:09 +00:00
|
|
|
"cross-env": "^1.0.7",
|
2016-02-03 11:55:44 -08:00
|
|
|
"deep-diff": "^0.3.3",
|
2016-02-09 06:36:36 -05:00
|
|
|
"gaze": "^0.5.2",
|
2016-02-02 20:08:53 -08:00
|
|
|
"jasmine": "^2.3.2",
|
2016-02-09 06:36:36 -05:00
|
|
|
"mongodb-runner": "^3.1.15",
|
|
|
|
|
"nodemon": "^1.8.1"
|
2016-01-28 10:58:12 -08:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
2016-02-09 12:49:18 -05:00
|
|
|
"dev": "npm run build && bin/dev",
|
2016-02-08 20:20:21 -08:00
|
|
|
"build": "./node_modules/.bin/babel src/ -d lib/",
|
2016-02-09 13:12:09 +00:00
|
|
|
"pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=3.0.8} ./node_modules/.bin/mongodb-runner start",
|
2016-02-10 11:31:00 +00:00
|
|
|
"test": "cross-env NODE_ENV=test TESTING=1 ./node_modules/.bin/babel-node ./node_modules/babel-istanbul/lib/cli.js cover -x **/spec/** ./node_modules/jasmine/bin/jasmine.js",
|
2016-02-03 17:00:10 -05:00
|
|
|
"posttest": "mongodb-runner stop",
|
2016-02-08 20:20:21 -08:00
|
|
|
"start": "./bin/parse-server",
|
|
|
|
|
"prepublish": "npm run build"
|
2016-01-29 11:51:34 -08:00
|
|
|
},
|
|
|
|
|
"engines": {
|
2016-02-10 13:06:09 -08:00
|
|
|
"node": ">=4.3"
|
2016-02-03 17:00:10 -05:00
|
|
|
},
|
|
|
|
|
"bin": {
|
|
|
|
|
"parse-server": "./bin/parse-server"
|
2016-01-28 10:58:12 -08:00
|
|
|
}
|
|
|
|
|
}
|