├── .atom-build.js ├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmignore ├── README.md ├── content ├── .babelrc ├── .eslintignore ├── .eslintrc.js ├── .gitignore_ ├── .npmignore_ ├── .travis.yml ├── README.md ├── jest.config.js ├── package.json └── src │ ├── index.js │ └── index.test.js ├── package.json ├── src └── index.js └── yarn.lock /.atom-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reergymerej/npm-boom/HEAD/.atom-build.js -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | content/ 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reergymerej/npm-boom/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | lib/ 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reergymerej/npm-boom/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reergymerej/npm-boom/HEAD/README.md -------------------------------------------------------------------------------- /content/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reergymerej/npm-boom/HEAD/content/.babelrc -------------------------------------------------------------------------------- /content/.eslintignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | -------------------------------------------------------------------------------- /content/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reergymerej/npm-boom/HEAD/content/.eslintrc.js -------------------------------------------------------------------------------- /content/.gitignore_: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | lib/ 3 | -------------------------------------------------------------------------------- /content/.npmignore_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reergymerej/npm-boom/HEAD/content/.npmignore_ -------------------------------------------------------------------------------- /content/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reergymerej/npm-boom/HEAD/content/.travis.yml -------------------------------------------------------------------------------- /content/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reergymerej/npm-boom/HEAD/content/README.md -------------------------------------------------------------------------------- /content/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reergymerej/npm-boom/HEAD/content/jest.config.js -------------------------------------------------------------------------------- /content/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reergymerej/npm-boom/HEAD/content/package.json -------------------------------------------------------------------------------- /content/src/index.js: -------------------------------------------------------------------------------- 1 | console.log('Hello, world.') 2 | -------------------------------------------------------------------------------- /content/src/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reergymerej/npm-boom/HEAD/content/src/index.test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reergymerej/npm-boom/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reergymerej/npm-boom/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reergymerej/npm-boom/HEAD/yarn.lock --------------------------------------------------------------------------------