-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
76 lines (76 loc) · 1.94 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
{
"name": "twitter-together",
"version": "3.1.0",
"description": "A GitHub action to tweet 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' 'tweets/README.md' README.md package.json",
"lint:fix": "prettier --write '{lib,test}/**/*.js' 'docs/*.md' 'tweets/README.md' README.md package.json",
"test": "tap --branches=70 --functions=100 --lines=80 --statements=80 test/*/test.js",
"posttest": "npm run -s lint"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "1.9.1",
"@octokit/action": "^4.0.8",
"js-yaml": "^4.1.0",
"mime-types": "^2.1.35",
"parse-diff": "^0.9.0",
"twitter-api-v2": "^1.12.7",
"twitter-text": "^3.1.0"
},
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"nock": "^13.2.9",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"tap": "^16.3.0"
},
"repository": "github:twitter-together/action",
"release": {
"branches": [
"+([0-9]).x",
"main",
"next",
{
"name": "beta",
"prerelease": true
},
{
"name": "debug",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/exec",
{
"publishCmd": "npm run build"
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"dist/index.js"
],
"message": "build(release): compiled action for ${nextRelease.version}\n\n[skip ci]"
}
]
]
}
}