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

clique-seeds

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clique-seeds - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

7

package.json
{
"name": "clique-seeds",
"description": "A utility for creating seed data for both the server and client.",
"version": "0.0.1",
"version": "0.0.2",
"author": "Walker Ward <walker.ward1@gmail.com> ()",

@@ -23,3 +23,2 @@ "bugs": {

"ava": "^0.22.0",
"codecov": "^2.3.0",
"cross-env": "^5.0.5",

@@ -29,3 +28,2 @@ "eslint": "^4.5.0",

"eslint-plugin-import": "2.14.0",
"husky": "^0.14.3",
"nyc": "^11.1.0"

@@ -61,5 +59,4 @@ },

"test:dev": "NODE_ENV=test ava --watch",
"test-coverage": "cross-env NODE_ENV=test nyc ava",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
"test-coverage": "cross-env NODE_ENV=test nyc ava"
}
}
# clique-seeds
[![build status](https://img.shields.io/travis/walkward/clique-seeds.svg)](https://travis-ci.org/walkward/clique-seeds)
[![code coverage](https://img.shields.io/codecov/c/github/walkward/clique-seeds.svg)](https://codecov.io/gh/walkward/clique-seeds)
[![code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/sindresorhus/xo)
[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
[![made with lass](https://img.shields.io/badge/made_with-lass-95CC28.svg)](https://lass.js.org)
[![license](https://img.shields.io/github/license/walkward/clique-seeds.svg)](LICENSE)
> A utility for creating seed data for both the server and client.
## Table of Contents
## Install
[npm][]:
```sh
npm install clique-seeds
```
[yarn][]:
```sh
yarn add clique-seeds

@@ -33,21 +13,8 @@ ```

```js
const CliqueSeeds = require('clique-seeds');
const Seeds = require('clique-seeds');
const cliqueSeeds = new CliqueSeeds();
const seeds = new Seeds(1);
console.log(cliqueSeeds.renderName());
// script
console.log(seeds.asset());
```
## Contributors
## License
##
[npm]: https://www.npmjs.com/
[yarn]: https://yarnpkg.com/

@@ -40,4 +40,2 @@ const test = require('ava');

console.log(seeds.records.folders[0]);
assert.true(seeds.records.customers.every(customer => customer.projects.every(project => project.type === 'projects')));

@@ -44,0 +42,0 @@ assert.true(seeds.records.customers.every(customer => customer.groups.every(group => group.type === 'groups')));

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