-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "create-octoherd-script",
"version": "0.0.0-development",
"description": "CLI to create a new folder and repository for an Octoherd Script",
"type": "module",
"exports": "./cli.js",
"bin": {
"create-octoherd-script": "cli.js"
},
"repository": "github:octoherd/create-octoherd-script",
"keywords": [
"npm-init",
"octoherd"
],
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "ISC",
"scripts": {
"lint": "prettier --check 'lib/*.js' cli.js README.md package.json",
"lint:fix": "prettier --write 'lib/*.js' cli.js README.md package.json",
"test": "npm run lint"
},
"dependencies": {
"@octokit/auth-oauth-device": "^1.0.0",
"@octokit/core": "^3.2.4",
"camelcase": "^6.2.0",
"clipboardy": "^2.3.0",
"decamelize": "^5.0.0",
"execa": "^5.0.0",
"inquirer": "^7.3.3",
"prettier": "^2.2.1",
"spdx-license-list": "^6.3.0"
},
"devDependencies": {
"semantic-release": "^17.3.0"
},
"release": {
"branches": [
"main"
]
}
}