-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.76 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
64
65
66
67
68
69
70
71
{
"name": "gocrypt",
"version": "2.0.1",
"description": "A cryptographic library using native Node.js crypto functions & Go binaries for an all-in-one package for everything crypto.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "make remove && make rm_push && make pre_push && tsc -p ./lib/tsconfig.json",
"postinstall": "make install"
},
"repository": "https://github.com/LibraryofCode/GoCrypt",
"author": "Library of Code sp-us | Faculty Marshals",
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/LibraryofCode/GoCrypt/issues",
"email": "[email protected]"
},
"keywords": [
"crypto",
"x509",
"ec",
"ecc",
"rsa",
"dsa",
"golang",
"go",
"csr",
"openssl",
"ssl",
"tls",
"certs",
"certificates",
"cryptography"
],
"os": [
"darwin",
"linux",
"windows"
],
"release": {
"branches": [
"master"
],
"repositoryUrl": "[email protected]:LibraryofCode/GoCrypt.git",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"dependencies": {
"axios": "^0.19.2",
"typescript": "^3.8.3"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/git": "^8.0.0",
"@types/ffi-napi": "^2.4.1",
"@types/node": "^13.1.8",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"semantic-release": "^16.0.3",
"typedoc": "^0.16.9"
}
}