-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.75 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
{
"author": "ivankatliarchuk <https://github.com/ivankatliarchuk>",
"bugs": {
"url": "https://github.com/workflow-actions/first-action/issues"
},
"dependencies": {
"@actions/core": "^1.2.7",
"@actions/github": "^5.0.0",
"env-var": "7.1.1"
},
"description": "TypeScript template/accelerator action",
"devDependencies": {
"@types/jest": "29.5.1",
"@types/node": "18.15.13",
"@types/sinon": "10.0.2",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vercel/ncc": "0.38.1",
"chai": "4.3.7",
"eslint": "8.46.0",
"eslint-config-google": "0.14.0",
"filewtf": "1.0.0",
"git-branch-is": "4.0.0",
"husky": "8.0.1",
"jest": "29.5.0",
"jest-circus": "29.5.0",
"mocha-param": "2.0.1",
"nock": "13.3.2",
"prettier": "2.8.7",
"sinon": "11.1.2",
"snyk": "1.1190.0",
"ts-jest": "29.1.0",
"typescript": "5.1.6"
},
"homepage": "https://github.com/workflow-actions/first-action#readme",
"keywords": [
"github",
"action",
"github-actions",
"nodejs",
"typescript"
],
"license": "ISC",
"main": "lib/index.js",
"name": "blueprint-github-action-typescript",
"repository": {
"type": "git",
"url": "git+https://github.com/workflow-actions/first-action.git"
},
"scripts": {
"build": "tsc",
"exec": "node dist/index.js",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"pack": "tsc --noEmit && ncc build --license license",
"test": "npm run test:unit",
"test:coverage": "tsc --noEmit && jest --coverage",
"test:jest": "tsc --noEmit && jest",
"test:unit": "jest unit"
},
"snyk": true,
"version": "0.0.1"
}