@foundry-ai/api-auth
Version:
Foundry.ai API auth middleware
78 lines (77 loc) • 1.81 kB
JSON
{
"name": "@foundry-ai/api-auth",
"version": "1.3.2",
"description": "Foundry.ai API auth middleware",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"bugs": {
"url": "https://github.com/FoundryAI/api-auth/issues"
},
"scripts": {
"build": "tsc -p ./",
"prepublishOnly": "tsc -p ./",
"reportCoverage": "nyc report --reporter=text-lcov | coveralls",
"run": "ts-node ./lib/index.ts",
"test": "nyc mocha",
"watch": "mocha-typescript-watch"
},
"repository": {
"type": "git",
"url": "https://github.com/FoundryAI/api-auth"
},
"homepage": "https://github.com/FoundryAI/api-auth#readme",
"keywords": [
"foundry",
"foundryai",
"api-auth",
"auth"
],
"author": "FoundryAI Engineering",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.0.3",
"@types/express": "^4.0.37",
"@types/joi": "^10.4.1",
"@types/lodash": "^4.14.70",
"@types/node": "^8.0.25",
"@types/request-promise": "^4.1.36",
"@types/sinon-chai": "^2.7.28",
"chai": "^4.1.1",
"chance": "^1.0.10",
"express": "^4.15.4",
"mocha": "^3.5.0",
"mocha-typescript": "^1.1.7",
"nock": "^9.0.14",
"nyc": "^11.1.0",
"sinon": "^3.2.0",
"sinon-chai": "^2.13.0",
"supertest": "^3.0.0",
"typings": "^2.1.1"
},
"dependencies": {
"@foundry-ai/api-errors": "^0.2.1",
"express-validation": "^1.0.2",
"joi": "^10.6.0",
"lodash": "^4.17.4",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"ts-node": "^3.3.0"
},
"nyc": {
"include": [
"lib/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"lcov",
"text-summary"
],
"sourceMap": true,
"instrument": true
}
}