forked from Southern/node-x509
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
58 lines (58 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
49
50
51
52
53
54
55
56
57
58
{
"name": "@ghaiklor/x509",
"version": "1.1.0",
"description": "Simple X509 certificate parser",
"main": "index.js",
"license": "MIT",
"homepage": "https://github.com/ghaiklor/node-x509#readme",
"author": "Colton Baker",
"contributors": [
{
"email": "[email protected]",
"name": "Eugene Obrezkov",
"url": "https://ghaiklor.com"
}
],
"repository": {
"type": "git",
"url": "[email protected]:ghaiklor/node-x509.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/ghaiklor/node-x509/issues"
},
"keywords": [
"x509",
"parser",
"openssl",
"certificate",
"cert"
],
"files": [
"include",
"src",
"binding.gyp",
"index.js"
],
"engines": {
"node": ">=10"
},
"scripts": {
"lint": "eslint --fix .",
"prepublishOnly": "npm run lint && npm run test",
"test": "jest"
},
"dependencies": {
"nan": "2.14.2"
},
"devDependencies": {
"eslint": "7.6.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"jest": "26.2.2"
}
}