├── .all-contributorsrc ├── .babelrc ├── .doclets.yml ├── .eslintignore ├── .gitattributes ├── .gitignore ├── .npmrc ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── esdoc.json ├── other ├── CODE_OF_CONDUCT.md ├── EXAMPLES.md ├── MAINTAINING.md ├── ROADMAP.md └── nps-utils-demo.gif ├── package-scripts.js ├── package.json ├── src ├── __snapshots__ │ ├── includePackage.test.js.snap │ └── index.test.js.snap ├── includePackage.test.js ├── index.js └── index.test.js └── yarn.lock /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/.babelrc -------------------------------------------------------------------------------- /.doclets.yml: -------------------------------------------------------------------------------- 1 | dir: src 2 | articles: 3 | - Overview: README.md 4 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .nyc_output 3 | coverage 4 | dist 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/.npmrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/README.md -------------------------------------------------------------------------------- /esdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/esdoc.json -------------------------------------------------------------------------------- /other/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/other/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /other/EXAMPLES.md: -------------------------------------------------------------------------------- 1 | # Examples 2 | -------------------------------------------------------------------------------- /other/MAINTAINING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/other/MAINTAINING.md -------------------------------------------------------------------------------- /other/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/other/ROADMAP.md -------------------------------------------------------------------------------- /other/nps-utils-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/other/nps-utils-demo.gif -------------------------------------------------------------------------------- /package-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/package-scripts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/package.json -------------------------------------------------------------------------------- /src/__snapshots__/includePackage.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/src/__snapshots__/includePackage.test.js.snap -------------------------------------------------------------------------------- /src/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/src/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /src/includePackage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/src/includePackage.test.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/src/index.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/nps-utils/HEAD/yarn.lock --------------------------------------------------------------------------------