-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathpackage.json
84 lines (84 loc) · 2.3 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
{
"name": "@octokit/webhooks",
"version": "0.0.0-development",
"description": "GitHub webhook events toolset for Node.js",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/octokit/webhooks.js.git"
},
"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/**/*' README.md package.json",
"lint:fix": "prettier --write 'src/**/*.{ts,json}' 'scripts/**/*' 'test/**/*' 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-definitions": "^3.57.2",
"aggregate-error": "^3.1.0",
"debug": "^4.0.0"
},
"devDependencies": {
"@jest/types": "^26.6.2",
"@octokit/tsconfig": "^1.0.1",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.9",
"@types/json-schema": "^7.0.7",
"@types/node": "^14.0.14",
"@types/prettier": "^2.0.0",
"axios": "^0.21.0",
"get-port": "^5.0.0",
"jest": "^26.2.2",
"prettier": "^2.0.1",
"prettier-plugin-packagejson": "^2.2.9",
"semantic-release": "^17.0.0",
"ts-jest": "^26.2.0",
"ts-node": "^9.1.1",
"typescript": "^4.0.2"
},
"publishConfig": {
"access": "public"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
]
]
},
"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-definitions"
]
}
}