-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.89 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
{
"name": "loopback-component-model-extender",
"version": "0.0.0-development",
"description": "Loopback Component Model Extender",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "nyc --reporter=lcov --reporter=text --reporter=text-summary mocha test/*test.js",
"test:watch": "npm run test -- -w",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/fullcube/loopback-component-model-extender.git"
},
"keywords": [
"loopback"
],
"author": "Tom Kirkpatrick",
"license": "ISC",
"bugs": {
"url": "https://github.com/fullcube/loopback-component-model-extender/issues"
},
"homepage": "https://github.com/fullcube/loopback-component-model-extender#readme",
"dependencies": {
"app-root-path": "2.0.1",
"debug": "2.6.8",
"lodash.kebabcase": "4.1.1",
"require-all": "2.2.0"
},
"devDependencies": {
"@bubltechnology/customizable-commit-analyzer": "1.0.2-0",
"chai": "4.0.2",
"condition-circle": "1.5.0",
"cors": "2.8.3",
"coveralls": "2.13.1",
"eslint": "3.19.0",
"eslint-config-fullcube": "2.0.35-latest-20170602-0428.0",
"loopback": "3.8.0",
"loopback-boot": "2.24.0",
"mocha": "3.4.2",
"nyc": "11.0.2",
"semantic-release": "6.3.6",
"strong-error-handler": "2.1.0"
},
"config": {
"commitTypeMap": {
"feat": "minor",
"fix": "patch",
"docs": "patch",
"style": "patch",
"refactor": "patch",
"perf": "patch",
"test": "patch",
"build": "patch",
"ci": "patch",
"chore": "patch",
"revert": "patch"
}
},
"release": {
"verifyConditions": "condition-circle",
"analyzeCommits": "@bubltechnology/customizable-commit-analyzer"
}
}