forked from slively/loopback-db-migrate
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.67 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "loopback-db-migrate",
"description": "Migration framework for Loopback.",
"version": "0.0.3",
"author": {
"name": "Scott Lively"
},
"contributors": [
"Tom Kirkpatrick @mrfelton"
],
"repository": {
"type": "git",
"url": "https://github.com/slively/loopback-db-migrate.git"
},
"keywords": [
"loopback",
"strongloop",
"migrate"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/slively/loopback-db-migrate/issues"
},
"homepage": "https://github.com/slively/loopback-db-migrate",
"files": [
"migration-skeleton.js",
"lib",
"bin",
"test"
],
"directories": {
"lib": "lib",
"test": "test"
},
"main": "./lib/index.js",
"bin": {
"loopback-db-migrate": "./bin/cli"
},
"scripts": {
"lint": "jscs lib && jshint lib",
"test": "mocha -R spec --timeout 10000 test/test.js",
"test:watch": "npm run test -- -w",
"pretest": "npm run lint",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"outdated": "npm outdated --depth=0"
},
"dependencies": {
"cli-prompt": "^0.4.2",
"commander": "^2.8.1",
"debug": "^2.2.0",
"mkdirp": "^0.5.1"
},
"peerDependencies": {
"loopback": ">=2.22.0"
},
"devDependencies": {
"bluebird": "latest",
"chai": "latest",
"jscs": "latest",
"jshint": "latest",
"lodash": "latest",
"loopback": ">=2.22.0",
"loopback-boot": "^2.12.2",
"loopback-component-explorer": "2.1.1",
"loopback-datasource-juggler": ">=2.4.0",
"loopback-testing": "1.2.0",
"mocha": "latest",
"mocha-sinon": "latest",
"nyc": "latest",
"sinon": "latest",
"sinon-chai": "latest"
}
}