parse-server 6.0.0-alpha.5 → 6.0.0-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +7 -8
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
[](https://codecov.io/github/parse-community/parse-server?branch=alpha)
|
|
10
10
|
[](https://github.com/parse-community/parse-dashboard/releases)
|
|
11
11
|
|
|
12
|
-
[](https://nodejs.org)
|
|
13
13
|
[](https://www.mongodb.com)
|
|
14
14
|
[](https://www.postgresql.org)
|
|
15
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "parse-server",
|
|
3
|
-
"version": "6.0.0-alpha.
|
|
3
|
+
"version": "6.0.0-alpha.6",
|
|
4
4
|
"description": "An express module providing a Parse-compatible API server",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -112,20 +112,19 @@
|
|
|
112
112
|
"lint-fix": "eslint --fix --cache ./",
|
|
113
113
|
"build": "babel src/ -d lib/ --copy-files",
|
|
114
114
|
"watch": "babel --watch src/ -d lib/ --copy-files",
|
|
115
|
-
"test:mongodb:runnerstart": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=$npm_config_dbversion} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone}
|
|
116
|
-
"test:mongodb:testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=$npm_config_dbversion} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone}
|
|
115
|
+
"test:mongodb:runnerstart": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=$npm_config_dbversion} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} mongodb-runner start",
|
|
116
|
+
"test:mongodb:testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=$npm_config_dbversion} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} TESTING=1 jasmine",
|
|
117
117
|
"test:mongodb": "npm run test:mongodb:runnerstart --dbversion=$npm_config_dbversion && npm run test:mongodb:testonly --dbversion=$npm_config_dbversion",
|
|
118
|
-
"test:mongodb:4.0.28": "npm run test:mongodb --dbversion=4.0.28",
|
|
119
118
|
"test:mongodb:4.2.19": "npm run test:mongodb --dbversion=4.2.19",
|
|
120
119
|
"test:mongodb:4.4.13": "npm run test:mongodb --dbversion=4.4.13",
|
|
121
120
|
"test:mongodb:5.3.2": "npm run test:mongodb --dbversion=5.3.2",
|
|
122
121
|
"test:mongodb:6.0.2": "npm run test:mongodb --dbversion=6.0.2",
|
|
123
122
|
"posttest:mongodb": "mongodb-runner stop",
|
|
124
|
-
"pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.3.2} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone}
|
|
125
|
-
"testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.3.2} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone}
|
|
123
|
+
"pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.3.2} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} mongodb-runner start",
|
|
124
|
+
"testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.3.2} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} TESTING=1 jasmine",
|
|
126
125
|
"test": "npm run testonly",
|
|
127
|
-
"posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.3.2} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone}
|
|
128
|
-
"coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.3.2} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone}
|
|
126
|
+
"posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.3.2} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} mongodb-runner stop",
|
|
127
|
+
"coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.3.2} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} TESTING=1 nyc jasmine",
|
|
129
128
|
"start": "node ./bin/parse-server",
|
|
130
129
|
"prettier": "prettier --write {src,spec}/{**/*,*}.js",
|
|
131
130
|
"prepare": "npm run build",
|