Files
kami-parse-server/package.json

98 lines
2.9 KiB
JSON
Raw Normal View History

2016-01-28 10:58:12 -08:00
{
"name": "parse-server",
2017-10-26 17:15:32 -04:00
"version": "2.6.5",
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"
},
"files": [
"bin/",
"lib/",
"public_html/",
"views/",
"LICENSE",
"PATENTS",
"README.md"
],
"license": "BSD-3-Clause",
2016-01-28 10:58:12 -08:00
"dependencies": {
"@parse/fs-files-adapter": "1.0.1",
"@parse/push-adapter": "2.0.2",
"@parse/s3-files-adapter": "1.2.1",
"@parse/simple-mailgun-adapter": "1.0.1",
"bcryptjs": "2.4.3",
"body-parser": "1.18.2",
"commander": "2.11.0",
"deepcopy": "0.6.3",
2017-10-24 20:50:36 +01:00
"express": "4.16.0",
"intersect": "1.0.1",
"lodash": "4.17.4",
"lru-cache": "4.1.1",
2017-10-24 20:50:36 +01:00
"mime": "1.4.1",
"mongodb": "2.2.33",
"multer": "1.3.0",
"parse": "1.10.2",
"pg-promise": "7.3.2",
"redis": "2.8.0",
"request": "2.83.0",
"semver": "5.4.1",
"tv4": "1.3.0",
"uuid": "^3.1.0",
"winston": "2.4.0",
"winston-daily-rotate-file": "1.7.2",
"ws": "3.3.1"
2016-01-28 10:58:12 -08:00
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "^8.0.0",
"babel-plugin-syntax-flow": "6.18.0",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-preset-env": "1.6.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-3": "6.24.1",
"babel-register": "6.26.0",
"bcrypt-nodejs": "0.0.3",
"cross-env": "5.1.1",
"deep-diff": "0.3.8",
"eslint": "^4.9.0",
"eslint-plugin-flowtype": "^2.39.1",
"gaze": "1.1.2",
"jasmine": "2.8.0",
"jasmine-spec-reporter": "^4.1.0",
"mongodb-runner": "3.6.1",
"nodemon": "1.12.1",
"nyc": "^11.0.2",
"request-promise": "4.2.2"
2016-01-28 10:58:12 -08:00
},
"scripts": {
"dev": "npm run build && node bin/dev",
"lint": "eslint --cache ./",
2017-02-19 11:34:42 -05:00
"build": "babel src/ -d lib/ --copy-files",
"pretest": "npm run lint",
"test": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=3.2.6} MONGODB_STORAGE_ENGINE=mmapv1 TESTING=1 $COVERAGE_OPTION jasmine",
"test:win": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=3.2.6} MONGODB_STORAGE_ENGINE=mmapv1 TESTING=1 jasmine",
"coverage": "cross-env COVERAGE_OPTION='./node_modules/.bin/nyc' npm test",
"coverage:win": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=3.2.6} MONGODB_STORAGE_ENGINE=mmapv1 TESTING=1 node ./node_modules/.bin/nyc ./node_modules/jasmine/bin/jasmine.js",
2016-03-04 09:40:47 -05:00
"start": "node ./bin/parse-server",
"prepublish": "npm run build"
2016-01-29 11:51:34 -08:00
},
"engines": {
"node": ">=4.6"
},
"bin": {
"parse-server": "./bin/parse-server"
},
"optionalDependencies": {
"bcrypt": "1.0.3",
"uws": "^9.14.0"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/parse-server",
"logo": "https://opencollective.com/parse-server/logo.txt?reverse=true&variant=binary"
2016-01-28 10:58:12 -08:00
}
}