-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1014 Bytes
/
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
{
"name": "emojify-pr-title",
"description": "All PRs start with an emoji",
"homepage": "https://pineapple.lol/",
"version": "1.5.4",
"dependencies": {
"@actions/core": "^1.8.0",
"@actions/github": "^5.0.1",
"@octokit/action": "^3.18.0",
"axios": "^0.27.2",
"emoji-regex": "^10.1.0",
"fast-levenshtein": "^3.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.33.4",
"@zeit/ncc": "^0.22.3",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.0.3",
"prettier": "^2.6.2"
},
"main": "index.js",
"scripts": {
"build": "ncc build index.js --minify",
"lint": "eslint --ext js",
"lint:fix": "eslint --fix --ext js",
"format": "prettier --write \"./**/*.{js,jsx,json,md}\"",
"format:check": "prettier --check \"./**/*.{js,jsx,json,md}\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pineapplelol/emojify-pr-title.git"
}
}