|
1 | 1 | { |
2 | 2 | "name": "loopback-component-model-extender", |
3 | | - "version": "0.1.4", |
| 3 | + "version": "0.0.0-development", |
4 | 4 | "description": "Loopback Component Model Extender", |
5 | 5 | "main": "index.js", |
6 | 6 | "scripts": { |
7 | 7 | "lint": "eslint .", |
8 | 8 | "pretest": "npm run lint", |
9 | 9 | "test": "nyc --reporter=lcov --reporter=text --reporter=text-summary mocha test/*test.js", |
10 | | - "test:watch": "npm run test -- -w" |
| 10 | + "test:watch": "npm run test -- -w", |
| 11 | + "coverage": "nyc report --reporter=text-lcov | coveralls", |
| 12 | + "semantic-release": "semantic-release pre && npm publish && semantic-release post" |
11 | 13 | }, |
12 | 14 | "repository": { |
13 | 15 | "type": "git", |
14 | | - "url": "git+https://github.com/fullcube/loopback-component-model.extender.git" |
| 16 | + "url": "https://github.com/fullcube/loopback-component-model-extender.git" |
15 | 17 | }, |
16 | 18 | "keywords": [ |
17 | 19 | "loopback" |
18 | 20 | ], |
19 | 21 | "author": "Tom Kirkpatrick", |
20 | 22 | "license": "ISC", |
21 | 23 | "bugs": { |
22 | | - "url": "https://github.com/fullcube/loopback-component-model.extender/issues" |
| 24 | + "url": "https://github.com/fullcube/loopback-component-model-extender/issues" |
23 | 25 | }, |
24 | | - "homepage": "https://github.com/fullcube/loopback-component-model.extender#readme", |
| 26 | + "homepage": "https://github.com/fullcube/loopback-component-model-extender#readme", |
25 | 27 | "dependencies": { |
26 | 28 | "app-root-path": "2.0.1", |
27 | 29 | "debug": "2.2.0", |
28 | 30 | "lodash.kebabcase": "4.1.1" |
29 | 31 | }, |
30 | 32 | "devDependencies": { |
| 33 | + "@bubltechnology/customizable-commit-analyzer": "1.0.2-0", |
31 | 34 | "chai": "3.5.0", |
| 35 | + "condition-circle": "1.5.0", |
32 | 36 | "cors": "2.8.3", |
| 37 | + "coveralls": "2.13.1", |
33 | 38 | "eslint": "3.19.0", |
34 | 39 | "eslint-config-fullcube": "2.0.35-latest-20170602-0428.0", |
35 | 40 | "loopback": "3.8.0", |
36 | 41 | "loopback-boot": "2.24.0", |
37 | 42 | "mocha": "3.1.2", |
38 | 43 | "nyc": "11.0.2", |
39 | 44 | "require-all": "2.2.0", |
| 45 | + "semantic-release": "6.3.6", |
40 | 46 | "strong-error-handler": "2.1.0" |
| 47 | + }, |
| 48 | + "config": { |
| 49 | + "commitTypeMap": { |
| 50 | + "feat": "minor", |
| 51 | + "fix": "patch", |
| 52 | + "docs": "patch", |
| 53 | + "style": "patch", |
| 54 | + "refactor": "patch", |
| 55 | + "perf": "patch", |
| 56 | + "test": "patch", |
| 57 | + "build": "patch", |
| 58 | + "ci": "patch", |
| 59 | + "chore": "patch", |
| 60 | + "revert": "patch" |
| 61 | + } |
| 62 | + }, |
| 63 | + "release": { |
| 64 | + "verifyConditions": "condition-circle", |
| 65 | + "analyzeCommits": "@bubltechnology/customizable-commit-analyzer" |
41 | 66 | } |
42 | 67 | } |
0 commit comments