-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 1.98 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
{
"name": "semantic-release-notes-preview",
"version": "1.0.1",
"description": "A GitHub Action for previewing the release notes that will be generated by a given pull request",
"keywords": [
"Action",
"Actions",
"Changelog",
"GitHub",
"Release Notes"
],
"homepage": "https://github.com/guilhermetod/standard-release-tests#readme",
"bugs": {
"url": "https://github.com/guilhermetod/standard-release-tests/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guilhermetod/semantic-release-notes-preview.git"
},
"license": "MIT",
"author": "Guilherme Tod <[email protected]>",
"main": "src/index.js",
"scripts": {
"build": "rollup -c",
"lint": "lintr",
"prepare": "husky install",
"release": "npx semantic-release",
"test": "jest",
"test:ci": "jest --ci --coverage"
},
"lint-staged": {
"*": "npm run lint -- --fix"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"cosmiconfig": "^7.0.1",
"semantic-release": "^18.0.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^15.0.0",
"@guilhermetod/lintr": "^0.1.0-beta.0",
"@rollup/plugin-commonjs": "^22.0.0-1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^27.0.3",
"@types/semantic-release": "^17.2.3",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"commitlint": "^15.0.0",
"conventional-changelog-conventionalcommits": "^4.6.1",
"eslint": "^8.4.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-import-resolver-typescript": "^2.5.0",
"husky": "^7.0.4",
"jest": "^27.4.3",
"jest-mock": "^27.4.2",
"lint-staged": "^12.1.2",
"rollup": "^2.60.2",
"ts-jest": "^27.1.0",
"typescript": "^4.5.2"
}
}