-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
60 lines (60 loc) · 1.6 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
{
"name": "github-project",
"version": "0.0.0-development",
"description": "JavaScript SDK for GitHub's new Projects",
"type": "module",
"exports": "./index.js",
"types": "./index.d.ts",
"scripts": {
"test": "npm run test:code && npm run test:tsc && npm run test:tsd && npm run lint",
"test:code": "c8 --100 ava test/*.test.js",
"test:tsc": "tsc --allowJs --noEmit --esModuleInterop --skipLibCheck --lib es2020 index.js",
"test:tsd": "tsd",
"lint": "prettier --check \"*.{js,json,ts,md}\" \".github/**/*.yml\"",
"lint:fix": "prettier --write \"*.{js,json,ts,md}\" \".github/**/*.yml\"",
"coverage": "c8 report --reporter html",
"postcoverage": "open-cli coverage/index.html"
},
"repository": "github:gr2m/github-project",
"keywords": [
"github",
"project",
"sdk"
],
"author": "Gregor Martynus (https://github.com/gr2m)",
"license": "ISC",
"devDependencies": {
"@octokit/app": "^15.0.0",
"@octokit/openapi-types": "^24.0.0",
"@octokit/plugin-paginate-rest": "^11.0.0",
"@octokit/plugin-throttling": "^9.0.0",
"ava": "^6.0.0",
"c8": "^10.0.0",
"dotenv": "^16.0.1",
"octokit-plugin-create-pull-request": "^6.0.0",
"open-cli": "^8.0.0",
"prettier": "^3.0.0",
"tsd": "^0.31.0",
"typescript": "^5.0.0"
},
"renovate": {
"extends": [
"github>gr2m/.github"
]
},
"release": {
"branches": [
"+([0-9]).x",
"main",
"next",
{
"name": "beta",
"prerelease": true
}
]
},
"dependencies": {
"@octokit/core": "^6.0.0",
"type-fest": "^4.0.0"
}
}