package.json
1 { 2 "name": "jsonwebtoken", 3 "version": "9.0.2", 4 "description": "JSON Web Token implementation (symmetric and asymmetric)", 5 "main": "index.js", 6 "nyc": { 7 "check-coverage": true, 8 "lines": 95, 9 "statements": 95, 10 "functions": 100, 11 "branches": 95, 12 "exclude": [ 13 "./test/**" 14 ], 15 "reporter": [ 16 "json", 17 "lcov", 18 "text-summary" 19 ] 20 }, 21 "scripts": { 22 "lint": "eslint .", 23 "coverage": "nyc mocha --use_strict", 24 "test": "npm run lint && npm run coverage && cost-of-modules" 25 }, 26 "repository": { 27 "type": "git", 28 "url": "https://github.com/auth0/node-jsonwebtoken" 29 }, 30 "keywords": [ 31 "jwt" 32 ], 33 "author": "auth0", 34 "license": "MIT", 35 "bugs": { 36 "url": "https://github.com/auth0/node-jsonwebtoken/issues" 37 }, 38 "dependencies": { 39 "jws": "^3.2.2", 40 "lodash.includes": "^4.3.0", 41 "lodash.isboolean": "^3.0.3", 42 "lodash.isinteger": "^4.0.4", 43 "lodash.isnumber": "^3.0.3", 44 "lodash.isplainobject": "^4.0.6", 45 "lodash.isstring": "^4.0.1", 46 "lodash.once": "^4.0.0", 47 "ms": "^2.1.1", 48 "semver": "^7.5.4" 49 }, 50 "devDependencies": { 51 "atob": "^2.1.2", 52 "chai": "^4.1.2", 53 "conventional-changelog": "~1.1.0", 54 "cost-of-modules": "^1.0.1", 55 "eslint": "^4.19.1", 56 "mocha": "^5.2.0", 57 "nsp": "^2.6.2", 58 "nyc": "^11.9.0", 59 "sinon": "^6.0.0" 60 }, 61 "engines": { 62 "npm": ">=6", 63 "node": ">=12" 64 }, 65 "files": [ 66 "lib", 67 "decode.js", 68 "sign.js", 69 "verify.js" 70 ] 71 }