jose/package.json
2019-02-27 22:51:38 +01:00

78 lines
1.5 KiB
JSON

{
"name": "@panva/jose",
"version": "0.9.0",
"description": "JSON Web Almost Everything - JWA, JWS, JWE, JWK, JWT, JWKS for Node.js with minimal dependencies",
"keywords": [
"compact",
"decode",
"decrypt",
"encrypt",
"flattened",
"general",
"jose",
"jwa",
"jwe",
"jwk",
"jwks",
"jws",
"jwt",
"sign",
"verify"
],
"homepage": "https://github.com/panva/jose",
"repository": "panva/jose",
"license": "MIT",
"author": "Filip Skokan <panva.ip@gmail.com>",
"files": [
"lib",
"LICENSE_THIRD_PARTY"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"coverage": "nyc ava",
"lint": "standard",
"lint-fix": "standard --fix",
"test": "ava",
"watch": "ava --watch"
},
"dependencies": {
"@trust/keyto": "^0.3.5"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"ava": "^1.2.1",
"big-list-of-naughty-strings": "^1.0.0",
"husky": "^1.3.1",
"nyc": "^13.3.0",
"standard": "^12.0.1"
},
"engines": {
"node": ">=11.8.0"
},
"ava": {
"babel": false,
"compileEnhancements": false,
"files": [
"test/**/*.test.js"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"nyc": {
"all": true,
"reporter": [
"lcov",
"text-summary"
]
}
}