-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
31 lines (31 loc) · 1.02 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
{
"name": "issuelabeler",
"version": "2.2.0",
"description": "A GitHub bot to label issues automatically based on title and body against list of defined labels",
"author": "Riyadh Al Nur <[email protected]>",
"license": "MIT",
"repository": "https://github.com/riyadhalnur/issuelabeler.git",
"main": "handler.js",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"lint": "prettier --single-quote --check '*.{js,md,json}' 'src/**/*.js' 'test/**/*.{js,json}' '.github/**/*.yml'",
"lint:fix": "prettier --single-quote --write '*.{js,md,json}' 'src/**/*.js' 'test/**/*.{js,json}' '.github/**/*.yml'",
"test": "jest"
},
"bugs": {
"url": "https://github.com/riyadhalnur/issuelabeler/issues"
},
"homepage": "https://riyadhalnur.github.io/issuelabeler/",
"dependencies": {
"@probot/adapter-aws-lambda-serverless": "^3.0.0",
"serverless-plugin-scripts": "1.0.2"
},
"devDependencies": {
"jest": "26.6.3",
"nock": "13.0.7",
"prettier": "2.2.1"
}
}