-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.4 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
93
94
95
96
{
"name": "@letsfullstack/loopback-auto-migrate-component",
"description": "Migrate the database and import datas automatcally for the loopback application.",
"version": "0.0.3",
"author": {
"name": "Riceball LEE",
"email": "snowyu.lee@gmail.com",
"url": "https://github.com/snowyu"
},
"contributors": [
{
"name": "Lets Go",
"email": "contato@letscomunica.com.br",
"url": "https://github.com/letsfullstack"
}
],
"maintainers": [
{
"name": "Lets Go",
"email": "contato@letscomunica.com.br"
}
],
"repository": "git://github.com/letsfullstack/loopback-auto-migrate-component.git",
"keywords": [
"loopback",
"strongloop",
"migrate",
"database",
"import"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/letsfullstack/loopback-auto-migrate-component/issues"
},
"homepage": "https://github.com/letsfullstack/loopback-auto-migrate-component",
"files": [
"README.md",
"LICENSE-MIT",
"*.js",
"*.coffee",
"test",
"src",
"bin",
"lib"
],
"main": "./index",
"bin": {
"slc-migrate": "./bin/migrate.js"
},
"scripts": {
"prepublish": "eslint ./src/*.coffee && grunt build",
"build": "grunt build",
"lint": "eslint ./src/*.coffee",
"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": "^4.1.0",
"debug": "^2.6.3",
"js-yaml": "^3.8.3",
"load-config-file": "^0.3.4",
"util-ex": "^0.3.15"
},
"peerDependencies": {
"loopback": ">=2.25.0"
},
"devDependencies": {
"@fellow/eslint-plugin-coffee": "^0.4.13",
"chai": "~3.5.0",
"coffee-coverage": "^2.0.1",
"coffee-script": "^1.12.5",
"eslint": "6.8.0",
"grunt": "~1.0.1",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-coffee": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-mocha-test": "^0.13.2",
"grunt-newer": "^1.3.0",
"grunt-release": "^0.14.0",
"istanbul": "^0.4.5",
"loopback-boot": "^2.24.0",
"loopback-component-fixtures": "^1.1.0",
"mocha": "^3.2.0",
"mocha-sinon": "latest",
"rimraf": "^2.6.1",
"shasum": "^1.0.2",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}