-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
{
"name": "trafico",
"version": "0.0.1",
"description": "GitHub App built with Probot that automatically labels pull requests on certain conditions",
"main": "index.js",
"private": true,
"type": "module",
"scripts": {
"start:dev": "nodemon --exec \"npm start\"",
"format": "prettier --write {index,lib/**/*,test/auto-pr-labeler.test}.js",
"package": "ncc build --source-map --license licenses.txt"
},
"repository": "https://github.com/orhan/trafico.git",
"keywords": [
"probot",
"probot-app",
"probot-plugin",
"github-app",
"pull request",
"label",
"marge request"
],
"author": "Orhan Sönmez",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"debug": "^4.1.1",
"dotenv": "^8.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"codecov": "^3.4.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^2.1.0",
"jest": "^24.0.0",
"jsonwebtoken": "^9.0.2",
"nodemon": "^3.1.3",
"prettier": "1.17.1",
"semantic-release": "^24.0.0",
"smee-client": "^1.1.0",
"validate-commit-msg": "^1.1.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}