@adorsys/jwe-codec
Version:
Codec to encrypt any javascript value into a JsonWebEncryption (JWE)
79 lines (78 loc) • 1.9 kB
JSON
{
"name": "@adorsys/jwe-codec",
"version": "1.0.2",
"description": "Codec to encrypt any javascript value into a JsonWebEncryption (JWE)",
"main": "src/index.js",
"types": "src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/adorsys/jwe-codec.git"
},
"keywords": [
"jwe",
"encrypt",
"decrypt",
"codec"
],
"author": "Gunnar Radzom <github@radzom.net> (http://adorsys.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/adorsys/jwe-codec/issues"
},
"homepage": "https://github.com/adorsys/jwe-codec#readme",
"standard": {
"ignore": [],
"globals": [],
"plugins": [
"markdown",
"html"
]
},
"scripts": {
"lint": "standard --verbose | snazzy",
"format": "prettier-standard '**/*.js'",
"test": "ava",
"test:cover": "nyc --reporter=lcov ava",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run test && lint-staged"
}
},
"lint-staged": {
"{src,test}/**/*.js": [
"prettier-standard",
"git add"
]
},
"ava": {
"files": [
"test/**/*.test.js"
],
"verbose": true
},
"dependencies": {
"hydration": "^1.0.0",
"node-jose": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@octokit/core": "^3.2.1",
"ava": "^3.13.0",
"coveralls": "^3.1.0",
"eslint-plugin-html": "^6.1.0",
"eslint-plugin-markdown": "^1.0.2",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"nyc": "^15.1.0",
"prettier-standard": "^16.4.1",
"semantic-release": "^17.2.2",
"snazzy": "^9.0.0",
"standard": "^16.0.1"
}
}