ts-mean
Version:
Boilerplate for a TS-MEAN App
34 lines (33 loc) • 1.17 kB
JSON
{
"name": "@tsmean/mongo",
"version": "1.0.3",
"description": "Plug & Play Mongo Adapter for a typescript-based backend.",
"main": "dist/index.js",
"repository": "https://github.com/tsmean/mongo.git",
"author": "bersling <bersling@gmail.com>",
"license": "MIT",
"types": "dist/index.d.ts",
"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 '**/*.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"
},
"dependencies": {
"@tsmean/dbadapter": "^1.0.4",
"chai": "^4.0.2",
"chai-http": "^3.0.0",
"mocha": "^3.4.2",
"mongodb": "^2.2.28"
},
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/mocha": "^2.2.41",
"@types/mongodb": "^2.2.6",
"ts-node": "^3.0.6",
"typescript": "^2.3.4"
}
}