-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
92 lines (92 loc) · 2.17 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "loopback-component-auto-migrate",
"description": "migrate the database and import datas automatcally for the loopback application.",
"version": "0.4.0",
"author": {
"name": "Riceball LEE",
"email": "[email protected]",
"url": "https://github.com/snowyu"
},
"contributors": [
{
"name": "Riceball LEE",
"email": "[email protected]",
"url": "https://github.com/snowyu"
}
],
"maintainers": [
{
"name": "Riceball LEE",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/snowyu/loopback-component-auto-migrate.js.git"
},
"keywords": [
"loopback",
"strongloop",
"migrate",
"database",
"import"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/snowyu/loopback-component-auto-migrate.js/issues"
},
"homepage": "https://github.com/snowyu/loopback-component-auto-migrate.js",
"files": [
"README.md",
"LICENSE-MIT",
"*.js",
"*.coffee",
"test",
"src",
"bin",
"lib"
],
"main": "./index",
"bin": {
"slc-migrate": "./bin/migrate.js"
},
"scripts": {
"prepublish": "grunt build",
"test": "grunt test",
"test-cov": "mocha --reporter dot && istanbul report text-summary lcovonly"
},
"dependencies": {
"app-root-path": "^2.0.1",
"bluebird": "^3.4.0",
"cson": "^5.1.0",
"debug": "^3.1.0",
"js-yaml": "^3.11.0",
"load-config-file": "^0.3.6",
"util-ex": "^0.3.15"
},
"peerDependencies": {
"loopback": ">=2.25.0"
},
"devDependencies": {
"chai": "~4.1.2",
"coffee-coverage": "^3.0.0",
"coffee-script": "^1.12.7",
"grunt": "~1.0.2",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-coffee": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-mocha-test": "^0.13.3",
"grunt-newer": "^1.3.0",
"grunt-release": "^0.14.0",
"istanbul": "^0.4.5",
"loopback-boot": "^2.27.1",
"loopback-component-fixtures": "^1.1.0",
"mocha": "^5.0.5",
"mocha-sinon": "latest",
"rimraf": "^2.6.2",
"shasum": "^1.0.2",
"sinon": "^4.5.0",
"sinon-chai": "^3.0.0"
}
}