clique-seeds
Advanced tools
Comparing version 0.0.1 to 0.0.2
{ | ||
"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
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
6
155996
10
360
20