jose/package.json
2019-01-20 14:26:09 +01:00

73 lines
1.4 KiB
JSON

{
"name": "ultimate-jose",
"version": "0.0.1",
"description": "JSON Web Everything (JWA, JWS, JWE, JWK, JWKS, JWT) for Node.js with minimal dependencies",
"keywords": [
"jose",
"jsonwebtoken",
"jwa",
"jwe",
"jwk",
"jws",
"jwt",
"rfc7515",
"rfc7516",
"rfc7517",
"rfc7518",
"rfc7519",
"rfc7797"
],
"homepage": "https://github.com/panva/ultimate-jose",
"repository": "panva/ultimate-jose",
"license": "MIT",
"author": "Filip Skokan <panva.ip@gmail.com>",
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"lint": "standard",
"lint-fix": "standard --fix",
"test": "ava",
"watch": "ava --watch",
"coverage": "nyc ava"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@trust/keyto": "^0.3.4",
"ms": "^2.1.1"
},
"devDependencies": {
"@commitlint/cli": "^7.4.0",
"@commitlint/config-conventional": "^7.3.1",
"ava": "^1.2.0",
"husky": "^1.3.1",
"nyc": "^13.1.0",
"standard": "^12.0.1"
},
"engines": {
"node": ">=11.8.0"
},
"ava": {
"babel": false,
"compileEnhancements": false,
"files": [
"test/**/*.test.js"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
]
}
}