-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.49 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
{
"name": "all-contributors-action",
"version": "1.0.0",
"description": "A GitHub action to automate acknowledging contributors to your open source projects",
"main": "dist/index.js",
"scripts": {
"lint": "eslint index.js",
"package": "ncc build index.js -o dist",
"test": "eslint index.js && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sinchang/all-contributors-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"all-contributors"
],
"author": "sinchang<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sinchang/all-contributors-action/issues"
},
"homepage": "https://github.com/actions/all-contributors-action#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.1",
"@actions/github": "^1.1.0",
"all-contributors-cli": "^6.11.0",
"compromise": "^11.14.3"
},
"devDependencies": {
"@semantic-release/git": "^7.0.18",
"@zeit/ncc": "^0.20.5",
"eslint": "^6.3.0",
"jest": "^24.9.0",
"semantic-release": "^15.13.31"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/git",
{
"assets": [
"dist/index.js"
],
"message": "build(release): compiled action for ${nextRelease.version}\n\n[skip ci]"
}
],
"@semantic-release/github"
]
}
}