-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.67 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
{
"name": "gh-action-release-it",
"version": "0.3.0",
"description": "Github Action to leverage release-it in Github repositories",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint --cache src/*.ts src/**/*.ts",
"lint-fix": "npx eslint --fix --cache src/**/*.ts src/*.ts",
"build": "rm -Rf dist/* && npx ncc build src/*.ts -m",
"lint-build": "npm run lint-staged && npm run build",
"lint-fix-build": "npm run lint-fix && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheRealWaldo/release-it.git"
},
"author": "TheRealWaldo",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/TheRealWaldo/release-it/issues"
},
"homepage": "https://github.com/TheRealWaldo/release-it#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"actions-toolkit": "^6.0.1",
"json5": "^2.2.3",
"release-it": "^14.14.3"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@release-it/bumper": "^3.0.1",
"@release-it/conventional-changelog": "^4.3.0",
"@tsconfig/node14": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}