Skip to content

Commit

Permalink
feat: Initial skeleton of the library
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-alvarez-alvarez committed Nov 15, 2018
0 parents commit 75bc603
Show file tree
Hide file tree
Showing 15 changed files with 14,688 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
]
]
}
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
dist
15 changes: 15 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"env": {
"browser": true,
"es6": true
},
"extends": ["plugin:prettier/recommended"],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": ["prettier"],
"rules": {
"prettier/prettier": "error"
}
}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.idea
node_modules
*.iml
coverage
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
language: node_js
branches:
only:
- master
- /^greenkeeper/.*$/
cache:
yarn: true
directories:
- node_modules
notifications:
email: false
node_js:
- node
script:
- npm run test:prod && npm run build
after_success:
- npm run report-coverage
- npm run semantic-release
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# jintrospectorg

[![Build Status](https://travis-ci.org/manuel-alvarez-alvarez/jintrospector.svg?branch=master)](https://travis-ci.org/manuel-alvarez-alvarez/jintrospector)
[![Coverage Status](https://coveralls.io/repos/github/manuel-alvarez-alvarez/jintrospector/badge.svg?branch=master)](https://coveralls.io/github/manuel-alvarez-alvarez/jintrospector?branch=master)
[![Greenkeeper badge](https://badges.greenkeeper.io/manuel-alvarez-alvarez/jintrospector.svg)](https://greenkeeper.io/)


8 changes: 8 additions & 0 deletions dist/jintrospector.cjs.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
'use strict';

var jintrospector = {


};

module.exports = jintrospector;
6 changes: 6 additions & 0 deletions dist/jintrospector.esm.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
var jintrospector = {


};

export default jintrospector;
11 changes: 11 additions & 0 deletions dist/jintrospector.umd.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global.jintrospector = factory());
}(this, (function () { 'use strict';

var jintrospector = {};

return jintrospector;

})));
Loading

0 comments on commit 75bc603

Please sign in to comment.