-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 825 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 825 Bytes
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
{
"name": "all-contributors-import",
"private": true,
"version": "0.0.0-development",
"description": "",
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"exports": "./index.js",
"bin": {
"all-contributors-import": "./bin/cli.js"
},
"dependencies": {
"@octokit/plugin-paginate-graphql": "^2.0.1",
"json-difference": "^1.9.1",
"octokit": "^2.1.0",
"pino": "^8.14.1"
},
"devDependencies": {
"@actions/core": "^1.10.0",
"pino-pretty": "^10.0.0"
},
"repository": "github:all-contributors/import",
"scripts": {
"import": "node ./import.js | pino-pretty",
"test": "node test.js"
},
"release": {
"branches": [
"+([0-9]).x",
"main",
"next",
{
"name": "beta",
"prerelease": true
}
]
}
}