-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
36 lines (36 loc) · 1007 Bytes
/
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
{
"name": "loopback-discovery",
"version": "1.0.6",
"description": "Database model discovery script for LoopBack",
"author": {
"name": "Marian Edu",
"email": "[email protected]"
},
"license": "MIT",
"preferGlobal": true,
"bin": {
"loopback-discovery": "main.js"
},
"scripts": {
"lint": "./node_modules/.bin/jshint ./lib main.js",
"checkStyle": "./node_modules/.bin/jscs ./lib main.js",
"pretest": "npm run-script lint && npm run-script checkStyle",
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --recursive -R spec test/*-test.js",
"posttest": "./node_modules/.bin/istanbul check-coverage"
},
"dependencies": {
"async": "^2.3.0",
"inquirer": "^0.9.0"
},
"devDependencies": {
"mocha": "~1.21.4",
"should": ">= 5.0",
"istanbul": ">= 0.3.6",
"jshint": ">= 2.6.0",
"jscs": ">= 1.11"
},
"repository": {
"type": "git",
"url": "git://github.com/akera-io/loopback-discovery.git"
}
}