-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.42 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@gitevents/ics",
"version": "1.0.0",
"description": "Tech Events meet Issue Ops",
"keywords": [
"events",
"issue ops",
"github",
"action",
"ics",
"icalendar"
],
"homepage": "https://gitevents.org/",
"bugs": {
"url": "https://github.com/gitevents/ics/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gitevents/ics.git"
},
"license": "MIT",
"author": "Patrick Heneise <[email protected]> (https://zentered.co)",
"contributors": [
{
"name": "Patrick Heneise",
"url": "https://zentered.co",
"author": true
}
],
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.js -o dist --license licenses.txt",
"release": "run-s lint test build",
"lint": "eslint .",
"license-checker": "license-checker --production --onlyAllow=\"MIT;ISC;BSD-3-Clause;BSD-2-Clause;Apache-2.0\"",
"test": "tap --node-arg=--experimental-json-modules --test-env=GITHUB_REPOSITORY=gitevents/ics-test -J test/*.test.js",
"test:report": "tap --test-env=GITHUB_REPOSITORY=gitevents/ics-test -J test/*.test.js --cov",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write"
],
"*.{js}": [
"eslint --cache --fix"
]
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.1",
"@octokit/auth-app": "^3.6.1",
"@octokit/rest": "^18.12.0",
"@zentered/issue-forms-body-parser": "^1.1.2",
"date-fns": "^2.28.0",
"date-fns-tz": "^1.3.3",
"gray-matter": "^4.0.3",
"ics": "^2.35.0",
"moment": "^2.29.2",
"strip-markdown-oneline": "^1.0.3"
},
"devDependencies": {
"@commitlint/config-conventional": "^16.2.1",
"@vercel/ncc": "^0.33.3",
"commitlint": "^16.2.3",
"eslint": "^8.12.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^7.0.4",
"license-checker": "^25.0.1",
"npm-run-all": "^4.1.5",
"pinst": "^3.0.0",
"prettier": "^2.6.2",
"tap": "^15.2.3"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
}
}