loopback-boot/package.json

53 lines
1.1 KiB
JSON
Raw Normal View History

2014-05-23 13:51:20 +00:00
{
"name": "loopback-boot",
"version": "3.0.1",
2016-09-16 08:17:20 +00:00
"publishConfig": {
"tag": "next"
},
2014-05-23 13:51:20 +00:00
"description": "Convention-based bootstrapper for LoopBack applications",
"keywords": [
"StrongLoop",
"LoopBack",
"Configuration",
"Bootstrap"
],
"repository": {
"type": "git",
2014-06-16 13:27:23 +00:00
"url": "https://github.com/strongloop/loopback-boot"
2014-05-23 13:51:20 +00:00
},
2016-11-15 14:07:22 +00:00
"engines": {
"node": ">=4.0.0"
},
2014-05-23 13:51:20 +00:00
"main": "index.js",
"browser": "browser.js",
2014-05-23 13:51:20 +00:00
"scripts": {
"test": "mocha",
"posttest": "npm run lint",
"lint": "eslint ."
2014-05-23 13:51:20 +00:00
},
"license": "MIT",
"dependencies": {
2017-05-08 21:48:48 +00:00
"async": "^2.4.0",
"bluebird": "^3.4.0",
"commondir": "^1.0.1",
"debug": "^2.2.0",
"lodash": "^4.13.1",
"semver": "^5.1.0",
"strong-globalize": "^2.7.0",
"toposort": "^1.0.0"
},
"devDependencies": {
"browserify": "^4.2.3",
"chai": "^3.5.0",
"coffee-script": "^1.10.0",
"coffeeify": "^2.0.1",
"dirty-chai": "^1.2.2",
2017-05-08 21:48:48 +00:00
"eslint": "^3.19.0",
"eslint-config-loopback": "^8.0.0",
"fs-extra": "^3.0.1",
2016-09-22 11:11:01 +00:00
"loopback": "^3.0.0",
2017-05-08 21:48:48 +00:00
"mocha": "^3.3.0",
"supertest": "^3.0.0"
2014-05-23 13:51:20 +00:00
}
}