-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 899 Bytes
/
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
{
"name": "octoherd-script-validate-contribution",
"version": "1.0.3",
"type": "module",
"exports": "./script.js",
"bin": {
"octoherd-script-validate-contribution": "./cli.js"
},
"description": "Script to validate if the contribution still includes boilerplate copy",
"scripts": {
"push": "npx @open-sauced/conventional-commit",
"start": "node cli.js",
"test": "node script.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/bdougie/octoherd-script-validate-contribution.git"
},
"keywords": [
"octoherd-script"
],
"author": "Brian Douglas (https://bdougie.live)",
"license": "MIT",
"dependencies": {
"@octoherd/cli": "^3.3.1"
},
"release": {
"branches": [
"main"
]
},
"devDependencies": {
"@open-sauced/conventional-commit": "^1.0.1"
},
"publishConfig": {
"access": "public"
}
}