forked from twitter-together/action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.48 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
{
"name": "toot-together",
"version": "0.0.0-development",
"description": "A GitHub action to toot together using pull requests",
"main": "lib/index.js",
"scripts": {
"build": "ncc build lib/index.js -o dist",
"coverage": "nyc report --reporter=html && open coverage/index.html",
"lint": "prettier --check '{lib,test}/**/*.js' 'docs/*.md' 'toots/README.md' README.md package.json",
"lint:fix": "prettier --write '{lib,test}/**/*.js' 'docs/*.md' 'toots/README.md' README.md package.json",
"test": "tap --100 test/*/test.js",
"posttest": "npm run -s lint"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "1.11.1",
"@octokit/action": "^4.0.10",
"masto": "^3.7.0",
"parse-diff": "^0.11.1"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@vercel/ncc": "^0.38.3",
"nock": "^13.5.6",
"prettier": "^3.3.3",
"semantic-release": "^24.2.0",
"tap": "^16.3.4"
},
"repository": {
"type": "git",
"url": "https://github.com/joschi/toot-together.git"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"dist/index.js"
],
"message": "build(release): compiled action for ${nextRelease.version}\n\n[skip ci]"
}
]
]
}
}