forked from archamoney/Archa-GitHub-Checks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.03 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.03 KB
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
{
"name": "dep-bot",
"version": "1.0.0",
"description": "A dependency manager for your Pull Requests",
"author": "Ahmed T. Ali <ah.tajelsir@gmail.com> (ahmed.sd)",
"license": "MIT",
"repository": "https://github.com/z0al/dep.git",
"scripts": {
"format": "prettier-standard '**/*.js'",
"precommit": "lint-staged",
"start": "probot run ./index.js",
"test": "jest"
},
"dependencies": {
"@probot/serverless-lambda": "^0.5.0",
"github": "^14.0.0",
"probot": "^9.11.5",
"probot-commands": "^1.1.0",
"probot-metadata": "^1.0.1",
"uuid": "^8.1.0"
},
"devDependencies": {
"all-contributors-cli": "^6.16.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.9",
"prettier-standard": "^16.3.0",
"smee-client": "^1.1.0"
},
"lint-staged": {
"*.js": [
"prettier-standard",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"jest": {
"testRegex": "\\.test\\.js$"
}
}