forked from jbuhacoff/nodejs-mybc-util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.53 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
57
58
59
60
61
62
63
{
"name": "@jbuhacoff/mybc",
"version": "1.0.3",
"description": "Automates custom packaging of BouncyCastle libraries for Android apps or other environments that include earlier versions of BouncyCastle that would conflict with the required version",
"main": "src/mybc-util.js",
"files": [
"src"
],
"preferGlobal": true,
"bin": {
"mybc": "src/mybc-util.js"
},
"scripts": {
"lint": "eslint --fix src/*.js src/cmd/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jbuhacoff/nodejs-mybc-util.git"
},
"engines": {
"node": ">=10.12.0"
},
"keywords": [
"bouncycastle",
"spongycastle",
"droidycastle",
"mybc",
"bc",
"sc",
"android",
"jca",
"jce",
"provider",
"tool",
"util"
],
"author": {
"name": "Jonathan Buhacoff",
"email": "[email protected]",
"url": "https://github.com/jbuhacoff"
},
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/jbuhacoff/nodejs-mybc-util/issues"
},
"homepage": "https://github.com/jbuhacoff/nodejs-mybc-util#readme",
"dependencies": {
"@libertyio/log-node": "^0.1.0",
"js-yaml": "^3.14.1",
"mustache": "^4.1.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@libertyio/commitlint-config": "^1.0.0",
"@libertyio/commitlint-config-type-enum": "^1.0.0",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.6",
"lodash": "^4.17.20"
}
}