forked from ampretia/node-x509
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 996 Bytes
/
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
{
"name": "@ampretia/x509",
"version": "0.4.7",
"description": "Simple X509 certificate parser; forked verion from Southern/x509",
"author": "Colton Baker",
"contributors": [
{
"name": "Matthew White",
"email": "[email protected]",
"url": "https://github.com/mbwhite/"
}
],
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:ampretia/node-x509.git"
},
"scripts": {
"lint": "eslint .",
"configure": "node-gyp configure",
"build": "npm run configure && node-gyp build",
"clean": "rm -rf node_modules && rm package-lock.json && rm -rf build",
"test": "mocha --recursive test/*.js",
"release": "standard-version"
},
"license": "MIT",
"dependencies": {
"nan": "2.14.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.6.0",
"mocha": "^5.2.0",
"npm-cli-login": "^0.1.1",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"standard-version": "^4.4.0"
}
}