-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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
44
45
46
47
48
{
"name": "@pirafrank/github-commit-sign",
"version": "0.1.4",
"description": "Simple GitHub client to make signed commits via their GraphQL APIs",
"main": "index.js",
"private": false,
"bin": {
"ggh": "github.js"
},
"scripts": {
"gh": "node github.js",
"test": "jest --runInBand",
"test:index": "jest --runInBand --testPathPattern=index.test.js",
"test:github": "jest --runInBand --testPathPattern=github.test.js",
"docker:build": "docker build -t github-commit-sign -f Dockerfile .",
"docker:test": "./test.docker.sh",
"docker:all": "npm run docker:build && npm run docker:test"
},
"keywords": [
"git",
"github",
"graphql",
"client",
"commit",
"signed",
"sign"
],
"author": "pirafrank",
"url": "https://fpira.com/",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pirafrank/github-commit-sign.git"
},
"homepage": "https://github.com/pirafrank/github-commit-sign",
"bugs": {
"url": "https://github.com/pirafrank/github-commit-sign/issues"
},
"dependencies": {
"graphql": "^16.8.1",
"urql": "^4.0.6",
"yargs": "^17.7.2"
},
"devDependencies": {
"dotenv": "^16.4.5",
"jest": "^29.7.0"
}
}