forked from paritytech/bench-bot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "bench-bot",
"version": "0.0.0",
"description": "bench-bot",
"author": "Parity <[email protected]>",
"license": "ISC",
"repository": "https://github.com/paritytech/bench-bot",
"homepage": "https://github.com/paritytech/bench-bot",
"bugs": "https://github.com/paritytech/bench-bot/issues",
"scripts": {
"dev": "nodemon",
"start": "probot run ./index.js",
"test": "mocha",
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
"prettier": "prettier '{*,**/*}.{js,json,yaml,html}'",
"format": "yarn run prettier --write",
"lint": "yarn run prettier --check"
},
"dependencies": {
"@octokit/auth-app": "^3.5.3",
"async-mutex": "^0.3.1",
"probot": "^12.1.0",
"shelljs": "^0.8.4",
"smee-client": "^1.2.2"
},
"devDependencies": {
"jest": "^27.0.6",
"nodemon": "^2.0.9",
"prettier": "^2.4.0",
"prettier-plugin-compactify": "^0.1.4"
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
},
"jest": {
"testEnvironment": "node"
}
}