forked from octokit/webhooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.11 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
96
97
98
{
"name": "@octokit/webhooks-definitions",
"version": "0.0.0-development",
"private": "true",
"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": "ts-node -T bin/octokit-webhooks.ts check --cached",
"build:all": "npm run -s build:webhooks && npm run -s build:schema && npm run -s build:types",
"build:schema": "ts-node -T bin/octokit-schema.ts",
"build:types": "ts-node -T bin/octokit-types.ts",
"build:webhooks": "ts-node -T bin/octokit-webhooks.ts update",
"lint": "prettier --check '{bin,lib}/**/*.ts' '*.{md,json}' 'bin/docs/*.md' '{payload-examples,payload-schemas,payload-types}/**/*.{ts,md,json,d.ts}'",
"lint:fix": "prettier --write '{bin,lib}/**/*.ts' '*.{md,json}' 'bin/docs/*.md' '{payload-examples,payload-schemas,payload-types}/**/*.{ts,md,json,d.ts}'",
"octokit-schema": "ts-node -T bin/octokit-schema.ts",
"octokit-webhooks": "ts-node -T bin/octokit-webhooks.ts",
"pretest": "npm run -s lint",
"test": "npm run build && npm run build:schema && npm run validate -- --continue-on-error && ts-node -T test.ts",
"typecheck": "tsc -p . --noEmit",
"validate": "npm run -s validate:payloads && npm run -s validate:schema",
"validate:payloads": "ts-node -T bin/validate-payload-examples.ts",
"validate:schema": "ts-node -T bin/validate-schema.ts"
},
"prettier": {},
"release": {
"branches": [
"master",
{
"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": "^0.9.0",
"@types/json-schema": "^7.0.9",
"@types/lodash": "^4.14.178",
"@types/node": "^18.0.0",
"@types/prettier": "^2.4.3",
"@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": "^11.8.5",
"json-diff": "^0.9.0",
"json-schema-to-typescript": "^11.0.0",
"prettier": "2.7.1",
"prettier-plugin-packagejson": "^2.2.15",
"semantic-release": "^19.0.3",
"semantic-release-plugin-update-version-in-files": "^1.1.0",
"ts-node": "^10.4.0",
"turndown": "^7.1.1",
"typescript": "^4.5.5",
"yargs": "^17.3.1"
},
"publishConfig": {
"access": "public"
}
}