authkey
Version:
simple app key issue and verification
72 lines (71 loc) • 1.87 kB
JSON
{
"name": "authkey",
"version": "1.4.0",
"description": "simple app key issue and verification",
"main": "index.js",
"scripts": {
"test": "jest --watch",
"test:single": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint ./src ./index.js ./__tests__",
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"semantic-release": "semantic-release"
},
"keywords": [
"authorization",
"keygen",
"key"
],
"author": "Adam Boro <adam@adamboro.com> (https://adamboro.com/)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/adekbadek/authkey.git"
},
"bugs": {
"url": "https://github.com/adekbadek/authkey/issues"
},
"homepage": "https://github.com/adekbadek/authkey#readme",
"release": {
"branch": "master"
},
"dependencies": {
"aws-sdk": "^2.205.0",
"cors": "^2.8.4",
"coveralls": "^3.0.0",
"dotenv": "^5.0.0",
"email-validator": "^1.1.1",
"express": "^4.16.2",
"jest": "^22.4.2",
"lodash-id": "^0.14.0",
"lowdb": "^1.0.0",
"nodemailer": "^4.6.0",
"supertest": "^3.0.0",
"uid-generator": "^1.0.0"
},
"devDependencies": {
"commitizen": "^2.9.6",
"conventional-changelog-cli": "^1.3.15",
"eslint": "^4.18.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"semantic-release": "^12.4.1"
},
"engines": {
"node": ">=8"
},
"jest": {
"globalSetup": "./jest-setup.js",
"watchPathIgnorePatterns": [
"<rootDir>/__tests__/db.json"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}