Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Merge branch 'master' into t/41
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinmar committed Nov 8, 2016
2 parents 997d8e5 + 8eac47e commit e90eb01
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 1 deletion.
26 changes: 26 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
sudo: required
dist: trusty
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
language: node_js
node_js:
- "6"
cache:
- node_modules
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
install:
- npm install
- npm install @ckeditor/ckeditor5-dev-tests
- npm install codeclimate-test-reporter
script:
- node_modules/.bin/ckeditor5-dev-tests --coverage
after_success:
- sed -i.backup 's/\.build\/ckeditor5\/[^\/]*/src/g' .build/coverage/lcov.info
- node_modules/.bin/codeclimate-test-reporter < .build/coverage/lcov.info
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CKEditor 5 Headings Feature
========================================

[![npm version](https://badge.fury.io/js/%40ckeditor%2Fckeditor5-heading.svg)](https://www.npmjs.com/package/@ckeditor/ckeditor5-heading)
[![Build Status](https://travis-ci.org/ckeditor/ckeditor5-heading.svg?branch=master)](https://travis-ci.org/ckeditor/ckeditor5-heading)
[![Test Coverage](https://codeclimate.com/github/ckeditor/ckeditor5-heading/badges/coverage.svg)](https://codeclimate.com/github/ckeditor/ckeditor5-heading/coverage)
[![Code Climate](https://codeclimate.com/github/ckeditor/ckeditor5-heading/badges/gpa.svg)](https://codeclimate.com/github/ckeditor/ckeditor5-heading)
[![Dependency Status](https://david-dm.org/ckeditor/ckeditor5-heading/status.svg)](https://david-dm.org/ckeditor/ckeditor5-heading#info=dependencies)
[![devDependency Status](https://david-dm.org/ckeditor/ckeditor5-heading/dev-status.svg)](https://david-dm.org/ckeditor/ckeditor5-heading#info=devDependencies)

The headings feature for CKEditor 5. More information about the project can be found at the following URL: <https://github.com/ckeditor/ckeditor5-heading>.
Expand Down
13 changes: 12 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,20 @@
"version": "0.4.0",
"description": "Headings feature for CKEditor 5.",
"keywords": [],
"dependencies": {},
"dependencies": {
"ckeditor5-core": "ckeditor/ckeditor5-core",
"ckeditor5-ui": "ckeditor/ckeditor5-ui",
"ckeditor5-ui-default": "ckeditor/ckeditor5-ui-default",
"ckeditor5-utils": "ckeditor/ckeditor5-utils",
"ckeditor5-engine": "ckeditor/ckeditor5-engine",
"ckeditor5-paragraph": "ckeditor/ckeditor5-paragraph"
},
"devDependencies": {
"@ckeditor/ckeditor5-dev-lint": "^1.0.1",
"ckeditor5-enter": "ckeditor/ckeditor5-enter",
"ckeditor5-editor-classic": "ckeditor/ckeditor5-editor-classic",
"ckeditor5-typing": "ckeditor/ckeditor5-typing",
"ckeditor5-undo": "ckeditor/ckeditor5-undo",
"gulp": "^3.9.0",
"guppy-pre-commit": "^0.4.0"
},
Expand Down

0 comments on commit e90eb01

Please sign in to comment.