Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
983 B
42 lines
983 B
{
|
|
"name": "browserify-sign",
|
|
"version": "4.2.1",
|
|
"description": "adds node crypto signing for browsers",
|
|
"bugs": {
|
|
"url": "https://github.com/crypto-browserify/browserify-sign/issues"
|
|
},
|
|
"license": "ISC",
|
|
"files": [
|
|
"browser",
|
|
"index.js",
|
|
"algos.js"
|
|
],
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/crypto-browserify/browserify-sign.git"
|
|
},
|
|
"scripts": {
|
|
"coverage": "nyc npm run unit",
|
|
"lint": "standard",
|
|
"test": "npm run lint && npm run unit",
|
|
"unit": "tape test/*.js"
|
|
},
|
|
"dependencies": {
|
|
"bn.js": "^5.1.1",
|
|
"browserify-rsa": "^4.0.1",
|
|
"create-hash": "^1.2.0",
|
|
"create-hmac": "^1.1.7",
|
|
"elliptic": "^6.5.3",
|
|
"inherits": "^2.0.4",
|
|
"parse-asn1": "^5.1.5",
|
|
"readable-stream": "^3.6.0",
|
|
"safe-buffer": "^5.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"nyc": "^15.0.1",
|
|
"standard": "^14.3.3",
|
|
"tape": "^5.0.0"
|
|
},
|
|
"browser": "browser/index.js"
|
|
}
|
|
|