-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
83 lines (83 loc) · 2.03 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
{
"name": "loopback-component-migrate",
"version": "0.0.0-semantically-released.0",
"description": "Migration framework for Loopback.",
"author": {
"name": "Tom Kirkpatrick @mrfelton"
},
"contributors": [
"Scott Lively @slively",
"Ivan Tugay @listepo"
],
"repository": {
"type": "git",
"url": "https://github.com/fullcube/loopback-component-migrate.git"
},
"keywords": [
"loopback",
"strongloop",
"migrate"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fullcube/loopback-component-migrate/issues"
},
"homepage": "https://github.com/fullcube/loopback-component-migrate",
"files": [
"migration-skeleton.js",
"lib",
"bin",
"test"
],
"directories": {
"lib": "lib",
"test": "test"
},
"main": "./lib/index.js",
"bin": {
"loopback-component-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",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"dependencies": {
"cli-prompt": "^0.6.0",
"commander": "^2.8.1",
"debug": "^2.6.8",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"bluebird": "^3.5.0",
"chai": "latest",
"condition-circle": "^1.5.0",
"ghooks": "^2.0.0",
"jscs": "latest",
"jshint": "latest",
"lodash": "latest",
"loopback": "^3.8.0",
"loopback-boot": "^2.24.1",
"loopback-component-explorer": "^4.2.0",
"loopback-testing": "^1.4.0",
"mocha": "latest",
"nyc": "latest",
"semantic-release": "^6.3.6",
"sinon": "latest",
"sinon-chai": "latest",
"validate-commit-msg": "^2.12.2"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "npm run lint"
}
},
"release": {
"verifyConditions": "condition-circle"
}
}