Files
kami-parse-server/package.json

61 lines
1.8 KiB
JSON
Raw Normal View History

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",
"main": "lib/index.js",
2016-01-28 10:58:12 -08:00
"repository": {
"type": "git",
"url": "https://github.com/ParsePlatform/parse-server"
},
"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",
"babel-runtime": "^6.5.0",
"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",
"node-gcm": "^0.14.0",
2016-02-03 02:45:46 -08:00
"parse": "^1.7.0",
"request": "^2.65.0",
"winston": "^2.1.1"
2016-01-28 10:58:12 -08:00
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.1",
"babel-istanbul": "^0.6.0",
2016-02-21 01:51:08 -08:00
"babel-plugin-transform-flow-strip-types": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
2016-02-21 01:51:08 -08:00
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.5.1",
2016-02-02 21:15:57 -08:00
"codecov": "^1.0.1",
"cross-env": "^1.0.7",
"deep-diff": "^0.3.3",
2016-02-21 01:51:08 -08:00
"flow-bin": "^0.22.0",
"gaze": "^0.5.2",
2016-02-02 20:08:53 -08:00
"jasmine": "^2.3.2",
"mongodb-runner": "^3.1.15",
"nodemon": "^1.8.1"
2016-01-28 10:58:12 -08:00
},
"scripts": {
"dev": "npm run build && 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",
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",
"posttest": "mongodb-runner stop",
"start": "./bin/parse-server",
"prepublish": "npm run build"
2016-01-29 11:51:34 -08:00
},
"engines": {
"node": ">=4.3"
},
"bin": {
"parse-server": "./bin/parse-server"
2016-01-28 10:58:12 -08:00
}
}