├── .gitignore ├── .npmignore ├── README.md ├── index.js ├── package.json └── screencast ├── demo.gif └── demo.mp4 /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | yarn.lock 4 | screencast/* 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FGRibreau/npm-interactive-scripts/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FGRibreau/npm-interactive-scripts/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FGRibreau/npm-interactive-scripts/HEAD/package.json -------------------------------------------------------------------------------- /screencast/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FGRibreau/npm-interactive-scripts/HEAD/screencast/demo.gif -------------------------------------------------------------------------------- /screencast/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FGRibreau/npm-interactive-scripts/HEAD/screencast/demo.mp4 --------------------------------------------------------------------------------