-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.47 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
49
50
51
52
53
54
55
56
{
"name": "git-signed",
"version": "0.1.3",
"description": "git commit signing made easy (and enforceable)",
"main": "index.js",
"bin": {
"git-signed": "index.js"
},
"scripts": {
"test": "eslint --ext .js,.json .",
"collaborator:join": "node . --join",
"collaborator:export-key": "node . --export",
"collaborator:sync-keys": "node . --sync",
"test:commit-signatures": "node . 4d770e8",
"precommit": "npm run test",
"postcommit": "npm run test:commit-signatures",
"postmerge": "npm install && npm run collaborator:sync-keys",
"update": "npm install && npm run collaborator:sync-keys"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wizcorp/git-signed.git"
},
"keywords": [
"git",
"sign",
"ci"
],
"author": "Marc Trudel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Wizcorp/git-signed/issues"
},
"homepage": "https://github.com/Wizcorp/git-signed#readme",
"devDependencies": {
"eslint": "^3.19.0",
"eslint-plugin-json": "^1.2.0",
"git-message": "1.0.4",
"husky": "0.14.3"
},
"dependencies": {
"chalk": "2.3.0",
"clipboardy": "1.2.2",
"git-url-parse": "7.0.1",
"inquirer": "4.0.0",
"pretty-error": "2.1.1",
"tempfile": "2.0.0"
},
"contributors": [
{
"name": "stelcheck",
"email": "[email protected]",
"key": "hkp://keys.gnupg.net#9115133EDCD7C42B13C1890DFCF165CCB3B5B506"
}
]
}