-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
95 lines (95 loc) · 3.51 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
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
{
"name": "@octokit/webhooks-definitions",
"version": "0.0.0-development",
"private": "true",
"type": "module",
"description": "machine-readable, always up-to-date GitHub Webhooks specifications",
"keywords": [],
"repository": "github:octokit/webhooks",
"license": "MIT",
"author": "Gregor Martynus (https://github.com/gr2m)",
"main": "index.json",
"files": [],
"scripts": {
"build": "node --no-warnings=ExperimentalWarning --loader ts-node/esm bin/octokit-webhooks.mts check --cached",
"build:all": "npm run -s build:webhooks && npm run -s build:schema && npm run -s build:types",
"build:schema": "node --no-warnings=ExperimentalWarning --loader ts-node/esm bin/octokit-schema.mts",
"build:types": "node --no-warnings=ExperimentalWarning --loader ts-node/esm bin/octokit-types.mts",
"build:webhooks": "node --no-warnings=ExperimentalWarning --loader ts-node/esm bin/octokit-webhooks.mts update",
"lint": "prettier --check '{bin,lib}/**/*.ts' '*.{md,json}' 'bin/docs/*.md' '{payload-examples,payload-schemas,payload-types}/**/*.{mts,md,json,d.ts}' 'test.mts'",
"lint:fix": "prettier --write '{bin,lib}/**/*.{ts,mts}' '*.{md,json}' 'bin/docs/*.md' '{payload-examples,payload-schemas,payload-types}/**/*.{mts,md,json,d.ts}' 'test.mts'",
"octokit-schema": "node --no-warnings=ExperimentalWarning --loader ts-node/esm bin/octokit-schema.mts",
"octokit-webhooks": "node --no-warnings=ExperimentalWarning --loader ts-node/esm bin/octokit-webhooks.mts",
"pretest": "npm run -s lint",
"test": "npm run build && npm run build:schema && npm run validate -- --continue-on-error && node --no-warnings=ExperimentalWarning --loader ts-node/esm test.mts",
"typecheck": "tsc -p . --noEmit",
"validate": "npm run -s validate:payloads && npm run -s validate:schema",
"validate:payloads": "node --no-warnings=ExperimentalWarning --loader ts-node/esm bin/validate-payload-examples.mts",
"validate:schema": "node --no-warnings=ExperimentalWarning --loader ts-node/esm bin/validate-schema.mts"
},
"prettier": {},
"release": {
"branches": [
"main",
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"semantic-release-plugin-update-version-in-files",
{
"files": [
"payload-examples/package.json"
]
}
],
[
"@semantic-release/npm",
{
"pkgRoot": "payload-types"
}
],
[
"@semantic-release/npm",
{
"pkgRoot": "payload-examples"
}
],
[
"@semantic-release/npm",
{
"pkgRoot": "payload-schemas"
}
]
]
},
"devDependencies": {
"@types/cheerio": "^0.22.30",
"@types/json-diff": "^1.0.0",
"@types/json-schema": "^7.0.9",
"@types/lodash": "^4.14.178",
"@types/node": "^22.0.0",
"@types/turndown": "^5.0.1",
"@types/yargs": "^17.0.8",
"ajv": "^8.9.0",
"ajv-formats": "^2.1.1",
"cheerio": "^1.0.0-rc.10",
"fast-deep-equal": "^3.1.3",
"got": "^14.0.0",
"json-diff": "^1.0.0",
"json-schema-to-typescript": "^15.0.0",
"prettier": "3.3.3",
"prettier-plugin-packagejson": "^2.2.15",
"semantic-release": "^24.0.0",
"semantic-release-plugin-update-version-in-files": "^1.1.0",
"ts-node": "^10.4.0",
"turndown": "^7.1.1",
"typescript": "^5.0.0",
"yargs": "^17.3.1"
}
}