-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
41 lines (40 loc) · 921 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "parse-server-test-runner",
"version": "1.0.0",
"description": "Helper functions for creating temporary parse-server instances",
"main": "src/index.js",
"scripts": {
"test": "eslint ."
},
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AmpMe/parse-server-test-runner.git"
},
"keywords": [
"parse",
"parse-server",
"testing",
"tests"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/AmpMe/parse-server-test-runner/issues"
},
"homepage": "https://github.com/AmpMe/parse-server-test-runner#readme",
"dependencies": {
"bluebird": "^3.5.0",
"express": "latest",
"mongodb": "^2.2.30",
"mongodb-runner": "^3.5.0",
"parse": "^1.10.0",
"parse-server": "^2.5.3"
},
"devDependencies": {
"eslint": "^4.2.0",
"eslint-config-google": "^0.9.1"
}
}