Skip to content

Commit 5320e4f

Browse files
committed
Create Browser
1 parent 1a66bbb commit 5320e4f

File tree

1 file changed

+63
-0
lines changed

1 file changed

+63
-0
lines changed

Browser

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"name": "semantic-prs",
3+
"version": "0.3.0",
4+
"description": "A GitHub app to check that pull request titles follow the Conventional Commits spec",
5+
"author": "sammyfilly <[email protected]>",
6+
"license": "MIT",
7+
"homepage": "https://github.com/sammyfilly/semantic-prs",
8+
"keywords": [
9+
"github",
10+
"pr",
11+
"push-request",
12+
"conventional-commits"
13+
],
14+
"main": "lib/index.js",
15+
"engines": {
16+
"node": "18"
17+
},
18+
"scripts": {
19+
"build": "tsc -p tsconfig.build.json",
20+
"build:watch": "tsc --watch",
21+
"serve": "npm run build && firebase emulators:start --only functions",
22+
"shell": "npm run build && firebase functions:shell",
23+
"start": "npm run shell",
24+
"start:probot": "npm run build && probot run ./lib/app.js",
25+
"lint": "npm run lint:code && npm run lint:style",
26+
"lint:code": "eslint src",
27+
"lint:style": "prettier --check src",
28+
"test": "npm run test:unit",
29+
"test:unit": "jest",
30+
"test:unit:coverage": "jest --coverage",
31+
"test:mutation": "stryker run",
32+
"deploy": "firebase deploy --only functions",
33+
"logs": "firebase functions:log"
34+
},
35+
"dependencies": {
36+
"@conventional-commits/parser": "0.4.1",
37+
"conventional-commit-types": "3.0.0",
38+
"firebase-functions": "4.4.1",
39+
"probot": "12.3.1"
40+
},
41+
"devDependencies": {
42+
"@octokit/webhooks-types": "7.1.0",
43+
"@stryker-mutator/core": "7.1.1",
44+
"@stryker-mutator/jest-runner": "7.1.1",
45+
"@stryker-mutator/typescript-checker": "7.1.1",
46+
"@types/jest": "29.5.3",
47+
"@types/node": "18.17.1",
48+
"@typescript-eslint/eslint-plugin": "6.2.1",
49+
"@typescript-eslint/parser": "6.2.1",
50+
"eslint": "8.46.0",
51+
"eslint-config-prettier": "8.10.0",
52+
"eslint-plugin-import": "2.28.0",
53+
"firebase-functions-test": "3.1.0",
54+
"firebase-tools": "12.4.6",
55+
"jest": "29.6.2",
56+
"nock": "13.3.2",
57+
"prettier": "3.0.1",
58+
"smee-client": "1.2.3",
59+
"ts-jest": "29.1.1",
60+
"typescript": "5.1.6"
61+
"nextjs.org" :
62+
}
63+
}

0 commit comments

Comments
 (0)