UNPKG

ts-mean

Version:

Boilerplate for a TS-MEAN App

39 lines (38 loc) 1.35 kB
{ "name": "@tsmean/auth", "version": "1.0.2", "types": "dist/index.d.ts", "main": "dist/index.js", "scripts": { "pub": "git add --all && git commit -m 'update' && git push && npm version patch && npm publish", "prepare": "npm run build", "build": "tsc", "test": "$(npm bin)/mocha --reporter spec --timeout 15000 --compilers ts:ts-node/register './src/**/*.test.ts'", "windows_test": "mocha --reporter spec --timeout 15000 --compilers ts:ts-node/register **\\*.test.ts", "spec": "$(npm bin)/mocha --reporter spec --compilers ts:ts-node/register --grep ${TEST} '**/*.test.ts'", "lint": "tslint src/**/*.ts" }, "description": "Authentication module for written in typescript, built on bcrypt and passportjs.", "repository": "https://github.com/tsmean/auth.git", "author": "bersling@gmail.com", "license": "MIT", "dependencies": { "@tsmean/dbadapter": "^1.0.4", "bcrypt-node": "^0.1.0", "bcrypt-nodejs": "^0.0.3", "chai": "^4.0.2", "express": "^4.15.3", "mocha": "^3.4.2", "passport": "^0.3.2", "passport-local": "^1.0.0" }, "devDependencies": { "@types/bcrypt-nodejs": "^0.0.30", "@types/chai": "^4.0.0", "@types/express": "^4.0.36", "@types/mocha": "^2.2.41", "@types/passport": "^0.3.3", "ts-node": "^3.0.6", "typescript": "^2.3.4" } }