forked from tinovyatkin/action-php-codesniffer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.35 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
{
"name": "typescript-action",
"version": "0.0.0",
"private": true,
"description": "TypeScript template action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "jest --passWithNoTests",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "YourNameOrOrganization",
"license": "MIT",
"dependencies": {
"@actions/core": "1.2.6",
"@actions/github": "5.1.1",
"@octokit/webhooks": "12.0.3",
"git-blame-json": "1.0.2",
"php-codesniffer": "1.0.2",
"picomatch": "2.2.2"
},
"devDependencies": {
"@types/jest": "29.5.4",
"@types/node": "18.17.3",
"@types/picomatch": "2.2.1",
"@typescript-eslint/eslint-plugin": "6.6.0",
"@typescript-eslint/parser": "6.6.0",
"@zeit/ncc": "0.22.3",
"eslint": "8.46.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-jest": "27.2.3",
"jest": "29.6.4",
"jest-circus": "29.6.4",
"js-yaml": "4.1.0",
"prettier": "3.0.3",
"ts-jest": "29.1.1",
"typescript": "5.2.2"
}
}