Files
kami-parse-server/package.json

39 lines
1.0 KiB
JSON
Raw Normal View History

2016-01-28 10:58:12 -08:00
{
"name": "parse-server",
2016-02-03 00:37:09 -08:00
"version": "2.0.6",
2016-01-28 10:58:12 -08:00
"description": "An express module providing a Parse-compatible API server",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ParsePlatform/parse-server"
},
"license": "BSD-3-Clause",
2016-01-28 10:58:12 -08:00
"dependencies": {
2016-01-31 22:27:33 -08:00
"aws-sdk": "~2.2.33",
"bcrypt-nodejs": "0.0.3",
2016-01-28 10:58:12 -08:00
"body-parser": "~1.12.4",
"deepcopy": "^0.5.0",
"express": "~4.2.x",
"hat": "~0.0.3",
"mime": "^1.3.4",
"mongodb": "~2.0.33",
"multer": "~0.1.8",
"parse": "~1.6.12",
"request": "^2.65.0"
},
"devDependencies": {
2016-02-02 21:15:57 -08:00
"codecov": "^1.0.1",
2016-02-02 16:38:56 -08:00
"istanbul": "^0.4.2",
2016-02-02 20:08:53 -08:00
"jasmine": "^2.3.2",
"mongodb-runner": "^3.1.15"
2016-01-28 10:58:12 -08:00
},
"scripts": {
2016-02-02 20:08:53 -08:00
"pretest": "MONGODB_VERSION=${MONGODB_VERSION:=3.0.8} mongodb-runner start",
2016-02-03 00:21:49 -08:00
"test": "TESTING=1 ./node_modules/.bin/istanbul cover --include-all-sources -x **/spec/** ./node_modules/.bin/jasmine",
2016-02-02 20:08:53 -08:00
"posttest": "mongodb-runner stop"
2016-01-29 11:51:34 -08:00
},
"engines": {
"node": ">=4.1"
2016-01-28 10:58:12 -08:00
}
}