-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.05 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
{
"name": "@neilbmclaughlin/github-secrets",
"version": "2.0.4",
"description": "manage git repository secrets",
"scripts": {
"lint": "standard",
"test": "mocha test/unit"
},
"engines": {
"node": ">=10"
},
"author": "Neil McLaughlin",
"license": "MIT",
"dependencies": {
"@octokit/core": "^3.2.4",
"chalk": "^4.1.0",
"split": "^1.0.1",
"tweetsodium": "0.0.5",
"yargs": "^16.2.0"
},
"devDependencies": {
"chai": "^4.3.2",
"mocha": "^8.3.0",
"standard": "^16.0.3"
},
"standard": {
"globals": [
"describe",
"beforeEach",
"expect",
"test",
"afterEach",
"beforeAll",
"afterAll",
"it"
]
},
"bin": {
"github-secrets": "bin/github-secrets.js"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/neilbmclaughlin/github-secrets.git"
},
"bugs": {
"url": "https://github.com/neilbmclaughlin/github-secrets/issues"
},
"homepage": "https://github.com/neilbmclaughlin/github-secrets#readme"
}