Skip to content

Commit b7332d6

Browse files
committed
build(package): initial version
1 parent d8337de commit b7332d6

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

package.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"name": "create-octoherd-script",
3+
"version": "0.0.0-development",
4+
"description": "CLI to create a new folder and repository for an Octoherd Script",
5+
"type": "module",
6+
"exports": "./cli.js",
7+
"bin": {
8+
"create-octoherd-script": "cli.js"
9+
},
10+
"repository": "https://github.com/octoherd/create-octoherd-script.js",
11+
"keywords": [
12+
"npm-init",
13+
"octoherd"
14+
],
15+
"author": "Gregor Martynus (https://twitter.com/gr2m)",
16+
"license": "ISC",
17+
"scripts": {
18+
"lint": "prettier --check 'lib/*.js' cli.js README.md package.json",
19+
"lint:fix": "prettier --write 'lib/*.js' cli.js README.md package.json",
20+
"test": "npm run lint"
21+
},
22+
"dependencies": {
23+
"@octokit/auth-oauth-device": "^1.0.0",
24+
"@octokit/core": "^3.2.4",
25+
"camelcase": "^6.2.0",
26+
"clipboardy": "^2.3.0",
27+
"decamelize": "^5.0.0",
28+
"execa": "^5.0.0",
29+
"inquirer": "^7.3.3",
30+
"prettier": "^2.2.1",
31+
"spdx-license-list": "^6.3.0"
32+
},
33+
"devDependencies": {
34+
"semantic-release": "^17.3.0"
35+
},
36+
"release": {
37+
"branches": [
38+
"main"
39+
]
40+
}
41+
}

0 commit comments

Comments
 (0)