-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "create-octokit-project",
"version": "0.0.0-development",
"description": "`npm init` script to create a new Octokit JS module (plugin, authentication strategy, or otherwise)",
"main": "index.js",
"type": "module",
"bin": {
"create-octokit-project": "bin/create-octokit-project.js"
},
"repository": "github:octokit/create-octokit-project.js",
"keywords": [
"npm-init"
],
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "MIT",
"scripts": {
"lint": "prettier --check 'lib/*.js' index.js bin/create-octokit-project.js README.md package.json",
"lint:fix": "prettier --write 'lib/*.js' index.js bin/create-octokit-project.js README.md package.json",
"test": "node index.js",
"posttest": "npm run lint"
},
"dependencies": {
"@octokit/auth-oauth-device": "^7.0.1",
"@octokit/core": "^6.0.1",
"camelcase": "^8.0.0",
"clipboardy": "^4.0.0",
"execa": "^9.0.0",
"inquirer": "^12.0.0",
"prettier": "^3.0.0",
"spdx-license-list": "^6.3.0"
},
"release": {
"branches": [
"main"
]
},
"engines": {
"node": ">= 18"
},
"publishConfig": {
"provenance": true
}
}