forked from octokit/webhooks.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.46 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
{
"name": "@octokit/webhooks",
"version": "0.0.0-development",
"description": "GitHub webhook events toolset for Node.js",
"keywords": [],
"repository": "github:octokit/webhooks.js",
"license": "MIT",
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"scripts": {
"build": "pika build",
"coverage": "jest --coverage && open coverage/lcov-report/index.html",
"generate-types": "ts-node --transpile-only scripts/generate-types.ts",
"lint": "prettier --check 'src/**/*.{ts,json}' 'scripts/**/*' 'test/**/*.ts' README.md package.json",
"lint:fix": "prettier --write 'src/**/*.{ts,json}' 'scripts/**/*' 'test/**/*.ts' README.md package.json",
"pretest": "npm run -s lint",
"test": "jest --coverage",
"validate:ts": "tsc --noEmit --noImplicitAny --target es2020 --esModuleInterop --moduleResolution node test/typescript-validate.ts"
},
"prettier": {},
"dependencies": {
"@octokit/request-error": "^2.0.2",
"@octokit/webhooks-methods": "^2.0.0",
"@octokit/webhooks-types": "5.2.0",
"aggregate-error": "^3.1.0"
},
"devDependencies": {
"@jest/types": "^27.0.0",
"@octokit/tsconfig": "^1.0.1",
"@octokit/webhooks-schemas": "5.2.0",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@types/jest": "^27.0.0",
"@types/json-schema": "^7.0.7",
"@types/node": "^14.0.14",
"@types/node-fetch": "^2.5.8",
"@types/prettier": "^2.0.0",
"axios": "^0.22.0",
"express": "^4.17.1",
"jest": "^27.0.0",
"node-fetch": "^2.6.1",
"prettier": "2.4.1",
"prettier-plugin-packagejson": "^2.2.9",
"semantic-release": "^18.0.0",
"ts-jest": "^27.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.1.5"
},
"publishConfig": {
"access": "public"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
]
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/npm",
{
"pkgRoot": "./pkg"
}
]
]
},
"renovate": {
"extends": [
"github>octokit/.github"
],
"ignoreDeps": [
"@octokit/webhooks-schemas",
"@octokit/webhooks-types"
]
}
}