generated from maxisam/github-ts-action-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.09 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": "dotnet-format-plus",
"version": "0.0.0",
"private": true,
"description": "yet another dotnet-format action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map",
"test": "jest --passWithNoTests",
"test:w": "jest --watchAll",
"copy-matcher": "cp ./src/problem-matcher.json ./dist/",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test && npm run copy-matcher"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"github actions"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/artifact": "^1.1.2",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/io": "1.1.3",
"@jscpd/core": "^3.5.4",
"@jscpd/finder": "^3.5.10",
"@jscpd/tokenizer": "^3.5.4",
"@octokit/rest": "^18.12.0",
"deepmerge": "4.3.1",
"js-yaml": "^4.1.0",
"jscpd": "^3.5.10",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@octokit/types": "^12.4.0",
"@types/jest": "^29.5.11",
"@types/js-yaml": "^4.0.9",
"@types/node": "^18.19.3",
"@types/node-fetch": "2.6.10",
"@typescript-eslint/parser": "^6.16.0",
"@vercel/ncc": "^0.38.1",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^4.9.5"
}
}