-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.17 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
{
"$schema": "https://www.schemastore.org/package.json",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"name": "@allons-y/template-actions",
"version": "1.0.0",
"description": "A template repository for the creation of new GitHub Actions.",
"license": "MPL-2.0",
"author": "Cassondra Roberts <castastrophe@users.noreply.github.com> (https://allons-y.studio)",
"homepage": "https://github.com/allonsy-studio/template-actions#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/allonsy-studio/template-actions.git"
},
"bugs": {
"url": "https://github.com/allonsy-studio/template-actions/issues"
},
"type": "module",
"main": "scripts/rename.js",
"files": [
"scripts/**/*",
".github/*.md",
"README.md",
"CHANGELOG.md",
"package.json",
"LICENSE"
],
"scripts": {
"changeset": "changeset",
"ci": "yarn format",
"coverage": "yarn test --coverage",
"format": "yarn lint --fix",
"lint": "eslint --no-error-on-unmatched-pattern --no-warn-ignored --cache '**/*'",
"precommit": "lint-staged",
"prepare": "husky && envoy || true",
"rename": "node scripts/rename.js",
"test": "node --experimental-vm-modules $(yarn bin jest)"
},
"devDependencies": {
"@allons-y/envoy": "^1.1.0",
"@changesets/cli": "^2.31.0",
"@changesets/get-github-info": "^0.8.0",
"@clack/prompts": "^1.5.1",
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.2",
"@eslint/compat": "^1.4.1",
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.2.0",
"@eslint/markdown": "^8.0.2",
"@stylistic/eslint-plugin": "^2.13.0",
"commander": "^15.0.0",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-jsonc": "^3.2.0",
"eslint-plugin-node": "^11.1.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jest": "^30.4.2",
"lint-staged": "^17.0.4",
"prettier": "^3.0.0"
},
"keywords": [
"actions",
"github"
],
"engines": {
"node": ">=24"
},
"lint-staged": {
"*": [
"eslint --fix --format stylish"
],
".github/renovate.json": "npx --yes --package renovate -- renovate-config-validator --strict"
},
"packageManager": "yarn@4.16.0"
}