-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.55 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
{
"name": "autorelease",
"version": "1.0.0",
"description": "Automatically create a release whenever the version changes in a properties file",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint --max-warnings=0 src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"all": "npm run build && npm run format && npm run lint && npm run package",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts, js}": [
"eslint --max-warnings=0"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/profusion/action-autorelease.git"
},
"keywords": [
"actions",
"github",
"auto",
"release",
"autorelease"
],
"author": "Ricardo Dalarme",
"license": "MIT",
"bugs": {
"url": "https://github.com/profusion/action-autorelease/issues"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"properties-reader": "^2.2.0"
},
"homepage": "https://github.com/profusion/action-autorelease#readme",
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/node": "16.18.36",
"@types/properties-reader": "^2.1.1",
"@typescript-eslint/parser": "^6.7.2",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.49.0",
"eslint-plugin-github": "^4.10.1",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"typescript": "5.0.4"
}
}