forked from mindsers/changelog-reader-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1020 Bytes
/
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
{
"name": "changelog-reader-action",
"version": "2.0.0",
"description": "A GitHub Action to read your CHANGELOG",
"main": "index.js",
"homepage": "https://github.com/mindsers/changelog-reader-action#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mindsers/changelog-reader-action"
},
"bugs": {
"url": "https://github.com/mindsers/changelog-reader-action/issues"
},
"author": {
"name": "Nathanaël Cherrier",
"email": "[email protected]",
"url": "https://nathanaelcherrier.com"
},
"scripts": {
"lint": "eslint src/**/*.js",
"package": "ncc build index.js -o dist",
"test": "npm run lint && jest"
},
"dependencies": {
"@actions/core": "^1.2.6"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/semver": "^7.3.3",
"@zeit/ncc": "^0.20.5",
"eslint": "^6.3.0",
"jest": "^25.1.0",
"semver": "^7.3.2"
},
"keywords": [
"GitHub",
"Actions",
"Changelog"
]
}