# minic

> Minimal JSONIC

Latest version **1.0.1** (published 2015-08-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install minic
pnpm add minic
yarn add minic
bun add minic
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2015-08-19 |
| First published | 2015-08-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=0.10.0 |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | yieme |
| Maintainers | yieme |
| Keywords | json, jsonic, datapack |

## Links

- npm: https://www.npmjs.com/package/minic
- Repository: https://github.com/yieme/minic
- Issues: https://github.com/yieme/minic/issues
- npm.io page: https://npm.io/package/minic

## Dependencies (1)

- [jsonic](https://npm.io/package/jsonic.md) ^0.2.2

## Alternatives

- [@mapbox/jsonlint-lines-primitives](https://npm.io/package/@mapbox/jsonlint-lines-primitives.md) — 5.3M weekly downloads
- [reftools](https://npm.io/package/reftools.md) — 3.5M weekly downloads
- [@hey-api/openapi-ts](https://npm.io/package/@hey-api/openapi-ts.md) — 3.5M weekly downloads
- [@mapbox/geojson-rewind](https://npm.io/package/@mapbox/geojson-rewind.md) — 2.4M weekly downloads
- [turbo-stream](https://npm.io/package/turbo-stream.md) — 1.7M weekly downloads

## Recent versions

- 1.0.1 (latest) — 2015-08-19
- 1.0.0 — 2015-08-19

## README

# minic
Minimal JSONIC, except:  
- Colons are removed from single character attributes
- Leading and trailing `{}` are removed

## Installation
This module is installed via npm:

```sh
npm i minic --save
```

## Examples

```js
var minic = require('minic')
var data  = {a:'day', i: 'live', as:'myself'};
var small = minic.stringify(data) // aday,ilive,as:myself
data = minic.parse(small); // {"a":"day","i":"live","as":"myself"}
```

## Rights
Copyright (C) 2015 by yieme, License: MIT

---
_Source: https://npm.io/package/minic · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
