-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
50 lines (50 loc) · 1.29 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
50
{
"name": "@instantish/notion-github-action",
"version": "1.2.3",
"private": true,
"description": "A GitHub Action that syncs issues to a Notion database. Multi-repository friendly.",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "ncc build src/index.ts",
"lint": "gts lint src/*",
"release": "release-it"
},
"dependencies": {
"@actions/core": "^1.4.0",
"@actions/github": "^5.0.0",
"@notionhq/client": "^0.4.13",
"@octokit/webhooks-definitions": "^3.67.3",
"@tryfabric/martian": "^1.1.1",
"octokit": "^1.1.0"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^15.12.2",
"@vercel/ncc": "^0.28.6",
"gts": "^3.1.0",
"jest": "^27.4.5",
"jest-circus": "^27.4.5",
"prettier": "^2.3.1",
"release-it": "^14.11.6",
"ts-jest": "^27.1.2",
"typescript": "^4.3.2"
},
"author": "Richard Robinson",
"license": "MIT",
"keywords": [
"notion",
"github",
"issues",
"issue-management",
"notion-api"
],
"repository": {
"type": "git",
"url": "git+https://github.com/instantish/notion-github-action.git"
},
"bugs": {
"url": "https://github.com/instantish/notion-github-action/issues"
},
"homepage": "https://github.com/instantish/notion-github-action#readme"
}