-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
49 lines (49 loc) · 1.03 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
{
"name": "loopback-cli",
"version": "5.2.0",
"description": "LoopBack CLI tool for creating projects, models and more.",
"license": "MIT",
"homepage": "http://loopback.io",
"keywords": [
"LoopBack",
"StrongLoop"
],
"author": "IBM Corp.",
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback-cli"
},
"bin": {
"lb": "bin/loopback-cli.js"
},
"scripts": {
"lint": "eslint --ignore-path=.gitignore .",
"test": "mocha",
"posttest": "npm run lint"
},
"config": {
"ci": {
"debug": "*,-mocha:*,-eslint:*"
}
},
"dependencies": {
"ansi-colors": "^4.1.1",
"camelcase-keys": "^4.2.0",
"debug": "^4.0.1",
"generator-loopback": "^6.0.0",
"inquirer": "~6.3.1",
"minimist": "^1.2.0"
},
"devDependencies": {
"chai": "^4.1.2",
"dirty-chai": "^2.0.1",
"eslint": "^5.6.0",
"eslint-config-loopback": "^12.0.0",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"rimraf": "^2.6.2"
}
}