-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
69 lines (69 loc) · 1.51 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "parse-benchmark",
"version": "1.0.0",
"description": "Parse Server Continuous Benchmark",
"homepage": "http://benchmark.parseplatform.org/",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/parse-community/benchmark"
},
"keywords": [
"parse",
"benchmark"
],
"files": [
"src/",
"benchmark/",
"server/",
"LICENSE",
"PATENTS",
"README.md"
],
"scripts": {
"bot": "probot run ./src/bot.js",
"bot:dev": "APP_ID=38757 LOG_LEVEL=debug WEBHOOK_PROXY_URL=https://smee.io/TTTwn6zi8W8li19 WEBHOOK_SECRET=development nodemon",
"start": "node ./src/index.js",
"test": "CLEAR=1 jest",
"lint": "rm -rf docs && eslint --cache ./",
"lint:fix": "eslint --fix ./",
"benchmarks": "./resources/run_benchmarks.sh"
},
"license": "Apache-2.0",
"dependencies": {
"autocannon": "4.0.0",
"cli-table": "0.3.1",
"commander": "3.0.0",
"inquirer": "6.5.1",
"ora": "3.4.0",
"parse-server": "github:parse-community/parse-server#master",
"pidusage": "2.0.17",
"probot": "9.3.1"
},
"devDependencies": {
"codecov": "3.7.1",
"eslint": "6.1.0",
"jest": "24.9.0",
"nodemon": "1.19.1",
"nyc": "14.1.1",
"smee-client": "1.1.0"
},
"jest": {
"collectCoverage": true
},
"nodemonConfig": {
"exec": "npm run bot",
"ignore": [
"docs/*",
"result.json",
"*logs/*"
],
"watch": [
".env",
"."
]
},
"engines": {
"node": "8"
}
}