generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.5 KB
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
{
"name": "github-action-skip",
"version": "0.0.0",
"private": true,
"description": "action to define an output depending on commit message",
"keywords": [
"actions",
"node",
"skip",
"ci"
],
"repository": "https://github.com/shiftcode/github-action-skip",
"license": "MIT",
"author": "shiftcode GmbH <team@shiftcode.ch>",
"type": "module",
"main": "lib/main.js",
"scripts": {
"build": "ncc build ./src/index.ts -o ./dist",
"build:watch": "ncc build ./src/index.ts -o ./dist --watch",
"lint": "eslint --fix src/*.ts",
"lint:staged": "eslint --fix",
"precommit": "npm run lint && npm run build && git add dist/index.js",
"prepare": "husky",
"prettier": "prettier --write src/*.ts",
"prettier:staged": "prettier --write"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@commitlint/prompt-cli": "^19.2.0",
"@octokit/core": "^6.0.1",
"@octokit/rest": "^20.0.2",
"@shiftcode/branch-utilities": "^2.0.1",
"@types/node": "^20.11.1",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"sort-package-json": "^2.10.0 ",
"typescript": "^5.4.3"
},
"engines": {
"node": "^20.11.1"
}
}