-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.07 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.07 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@pkgdeps/update-github-actions-permissions",
"version": "2.11.0",
"description": "Update GitHub Actions's `permissions` automatically.",
"keywords": [
"github",
"tool",
"security",
"cli",
"actions"
],
"homepage": "https://github.com/pkgdeps/update-github-actions-permissions",
"bugs": {
"url": "https://github.com/pkgdeps/update-github-actions-permissions/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pkgdeps/update-github-actions-permissions.git"
},
"license": "AGPL-3.0",
"author": "azu",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": {
"types": "./module/index.d.ts",
"default": "./module/index.js"
},
"default": "./module/index.js"
},
"./package.json": "./package.json"
},
"main": "./module/index.js",
"module": "module/index.js",
"types": "./module/index.d.ts",
"bin": {
"update-github-actions-permissions": "bin/cmd.js"
},
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"bin/",
"module/",
"src/",
"actions.yml",
"third-party/"
],
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks",
"prepublishOnly": "npm run clean && npm run build",
"test": "mocha",
"test:validator-ts": "create-validator-ts src/types.ts --check",
"update:step-security": "ts-node-esm scripts/pull-step-security.ts",
"update:third-party": "npm run update:step-security",
"updateSnapshot": "UPDATE_SNAPSHOT=1 npm test",
"validator-ts": "create-validator-ts src/types.ts",
"versionup": "lerna version",
"ci:versionup:patch": "npm version patch --no-push --no-git-tag-version --yes && npm run commit-version",
"ci:versionup:minor": "npm version minor --no-push --no-git-tag-version --yes && npm run commit-version",
"ci:versionup:major": "npm version major --no-push --no-git-tag-version --yes && npm run commit-version",
"commit-version": "git add . && git commit -m \"chore(release): v`node -p 'require(\"./package.json\").version'`\"",
"ci:release": "npm publish --yes",
"watch": "tsc --build --watch"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none"
},
"dependencies": {
"ajv": "^8.12.0",
"globby": "^13.1.3",
"meow": "11.0.0",
"yaml": "^2.2.1"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"create-validator-ts": "^5.0.1",
"lint-staged": "^13.1.0",
"mocha": "^10.2.0",
"prettier": "^2.8.3",
"rimraf": "^4.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748",
"publishConfig": {
"access": "public"
}
}