forked from fullcube/loopback-component-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.02 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
{
"name": "@classuper/loopback-component-migrate",
"version": "1.0.0",
"description": "Migration framework for Loopback.",
"main": "./lib/index.js",
"keywords": [
"loopback",
"strongloop",
"migrate"
],
"license": "MIT",
"author": "Alexey Kucherenko @killmenot",
"contributors": [
"Tom Kirkpatrick @mrfelton",
"Scott Lively @slively",
"Ivan Tugay @listepo"
],
"bin": {
"loopback-component-migrate": "./bin/cli",
"loopback-component-migrate-babel": "./bin/babel-cli"
},
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"migration-skeleton.js",
"lib",
"bin",
"test"
],
"homepage": "https://github.com/classuper/loopback-component-migrate",
"repository": {
"type": "git",
"url": "https://github.com/classuper/loopback-component-migrate.git"
},
"bugs": {
"url": "https://github.com/classuper/loopback-component-migrate/issues"
},
"scripts": {
"lint": "jscs lib && jshint lib",
"test": "mocha -R spec --timeout 10000 test",
"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.6.0",
"commander": "^6.2.0",
"debug": "^4.3.1",
"interop-require": "^1.0.0",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^11.0.0",
"bluebird": "^3.7.2",
"chai": "^4.2.0",
"commitlint": "^11.0.0",
"condition-circle": "^2.0.2",
"ghooks": "^2.0.4",
"jscs": "^3.0.7",
"jshint": "^2.12.0",
"lodash": "^4.17.20",
"loopback": "^3.28.0",
"loopback-boot": "^3.3.1",
"loopback-component-explorer": "^6.5.1",
"loopback-testing": "^1.4.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"sinon": "^9.2.1",
"sinon-chai": "^3.5.0",
"validate-commit-msg": "^2.14.0"
},
"config": {
"ghooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "npm run lint"
}
}
}