Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tiny-types

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tiny-types - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

lib/index.d.ts

55

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc