loopback-context/package.json

38 lines
858 B
JSON
Raw Permalink Normal View History

2016-07-28 13:11:12 +00:00
{
"name": "loopback-context",
"version": "1.0.0",
2016-11-18 20:12:33 +00:00
"publishConfig": {
"tag": "lts"
},
2016-07-28 13:11:12 +00:00
"description": "Current context for LoopBack applications, based on node-continuation-local-storage",
"keywords": [
"StrongLoop",
"LoopBack",
"Context"
],
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback-context"
2016-07-28 13:11:12 +00:00
},
2016-07-28 13:40:19 +00:00
"main": "server/current-context.js",
"browser": "browser/current-context.js",
2016-07-28 13:11:12 +00:00
"scripts": {
"test": "mocha",
"posttest": "npm run lint",
"lint": "eslint ."
},
"license": "MIT",
2016-07-28 13:40:19 +00:00
"dependencies": {
"continuation-local-storage": "^3.1.7"
},
2016-07-28 13:11:12 +00:00
"devDependencies": {
2016-07-28 13:40:19 +00:00
"chai": "^3.5.0",
"dirty-chai": "^1.2.2",
2016-07-28 13:11:12 +00:00
"eslint": "^2.13.1",
"eslint-config-loopback": "^4.0.0",
"loopback": "^2.36.0",
2016-07-28 13:40:19 +00:00
"mocha": "^2.5.3",
"supertest": "^1.2.0"
2016-07-28 13:11:12 +00:00
}
}