-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
49 lines (49 loc) · 1.37 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
{
"name": "@google-github-actions/actions-utils",
"version": "0.8.3",
"description": "Helpers and utilities that are shared among Google GitHub Actions",
"author": "Google LLC",
"license": "Apache-2.0",
"scripts": {
"build": "rm -rf dist/ && ncc build --source-map --no-source-map-register src/index.ts",
"lint": "eslint .",
"format": "eslint . --fix",
"docs": "rm -rf docs/ && typedoc --plugin typedoc-plugin-markdown",
"test": "bash ./bin/runTests.sh"
},
"bin": {
"actions-gen-readme": "./bin/actions-gen-readme.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/google-github-actions/actions-utils.git"
},
"files": [
"CONTRIBUTING.md",
"LICENSE.md",
"README.md",
"dist/"
],
"module": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.js",
"dependencies": {
"yaml": "^2.6.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@vercel/ncc": "^0.38.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint": "^9.16.0",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typedoc-plugin-markdown": "^4.3.1",
"typedoc": "^0.27.3",
"typescript-eslint": "^8.17.0",
"typescript": "^5.7.2"
}
}