forked from strongloop/loopback-boot
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.11 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "loopback-boot",
"version": "3.0.1",
"publishConfig": {
"tag": "next"
},
"description": "Convention-based bootstrapper for LoopBack applications",
"keywords": [
"StrongLoop",
"LoopBack",
"Configuration",
"Bootstrap"
],
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback-boot"
},
"engines": {
"node": ">=4.0.0"
},
"main": "index.js",
"browser": "browser.js",
"scripts": {
"test": "mocha",
"posttest": "npm run lint",
"lint": "eslint ."
},
"license": "MIT",
"dependencies": {
"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",
"eslint": "^3.19.0",
"eslint-config-loopback": "^8.0.0",
"fs-extra": "^3.0.1",
"loopback": "^3.0.0",
"mocha": "^3.3.0",
"supertest": "^3.0.0"
}
}