tiny-types
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "tiny-types", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "A tiny library that brings Tiny Types to JavaScript and TypeScript", | ||
@@ -13,2 +13,3 @@ "main": "lib/index.js", | ||
"verify": "npm run clean && npm run lint && npm test && npm run package", | ||
"publish-reports": "nyc report --reporter=text-lcov | coveralls", | ||
"commit": "git-cz", | ||
@@ -62,30 +63,30 @@ "semantic-release": "semantic-release", | ||
"path": "./node_modules/cz-conventional-changelog" | ||
}, | ||
"nyc": { | ||
"include": [ | ||
"src/*.ts", | ||
"src/**/*.ts" | ||
], | ||
"exclude": [ | ||
"features", | ||
"lib", | ||
"node_modules", | ||
"spec", | ||
"staging" | ||
], | ||
"extension": [ | ||
".ts" | ||
], | ||
"require": [ | ||
"ts-node/register" | ||
], | ||
"reporter": [ | ||
"json", | ||
"text-summary", | ||
"html" | ||
], | ||
"cache": true, | ||
"all": true | ||
} | ||
}, | ||
"nyc": { | ||
"include": [ | ||
"src/*.ts", | ||
"src/**/*.ts" | ||
], | ||
"exclude": [ | ||
"features", | ||
"lib", | ||
"node_modules", | ||
"spec", | ||
"staging" | ||
], | ||
"extension": [ | ||
".ts" | ||
], | ||
"require": [ | ||
"ts-node/register" | ||
], | ||
"reporter": [ | ||
"json", | ||
"text-summary", | ||
"html" | ||
], | ||
"cache": true, | ||
"all": true | ||
} | ||
} |
# Tiny Types | ||
[![npm version](https://badge.fury.io/js/tiny-types.svg)](https://badge.fury.io/js/tiny-types) | ||
[![Build Status](https://travis-ci.org/jan-molak/tiny-types.svg?branch=master)](https://travis-ci.org/jan-molak/tiny-types) | ||
[![Coverage Status](https://coveralls.io/repos/github/jan-molak/tiny-types/badge.svg?branch=master)](https://coveralls.io/github/jan-molak/tiny-types?branch=master) | ||
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/) | ||
[![npm](https://img.shields.io/npm/dm/tiny-types.svg)](https://npm-stat.com/charts.html?package=tiny-types) | ||
[![Known Vulnerabilities](https://snyk.io/test/github/jan-molak/tiny-types/badge.svg)](https://snyk.io/test/github/jan-molak/tiny-types) |
@@ -1,3 +0,1 @@ | ||
export function hi() { | ||
return 2; | ||
} | ||
export * from './TinyType'; |
@@ -22,3 +22,3 @@ export abstract class TinyType { | ||
const fields = this.fields().reduce((acc: string[], field: string) => { | ||
return acc.concat(`${field}=${this[field]}`) | ||
return acc.concat(`${field}=${this[field]}`); | ||
}, []); | ||
@@ -25,0 +25,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18776
13
74
8