├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── circle.yml ├── lib ├── cli.js ├── generate.js ├── parseProps.js └── properties.js ├── package.json ├── template ├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── circle.yml ├── docs │ └── contributing │ │ ├── index.md │ │ └── versions │ │ └── index.md ├── package.json ├── scripts │ ├── buildProduction.js │ └── buildWebpack.js ├── source │ └── index.js ├── test │ └── index.js └── webpack.config.js └── test ├── .eslintrc ├── index.js └── lib ├── generate-test.js └── parseProps-test.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | build 4 | template 5 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/circle.yml -------------------------------------------------------------------------------- /lib/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/lib/cli.js -------------------------------------------------------------------------------- /lib/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/lib/generate.js -------------------------------------------------------------------------------- /lib/parseProps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/lib/parseProps.js -------------------------------------------------------------------------------- /lib/properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/lib/properties.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/package.json -------------------------------------------------------------------------------- /template/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/template/.babelrc -------------------------------------------------------------------------------- /template/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/template/.editorconfig -------------------------------------------------------------------------------- /template/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/template/.eslintrc -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/template/.travis.yml -------------------------------------------------------------------------------- /template/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/template/CONTRIBUTING.md -------------------------------------------------------------------------------- /template/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/template/LICENSE -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/template/README.md -------------------------------------------------------------------------------- /template/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/template/circle.yml -------------------------------------------------------------------------------- /template/docs/contributing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/template/docs/contributing/index.md -------------------------------------------------------------------------------- /template/docs/contributing/versions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/template/docs/contributing/versions/index.md -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/template/package.json -------------------------------------------------------------------------------- /template/scripts/buildProduction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/template/scripts/buildProduction.js -------------------------------------------------------------------------------- /template/scripts/buildWebpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/template/scripts/buildWebpack.js -------------------------------------------------------------------------------- /template/source/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/template/source/index.js -------------------------------------------------------------------------------- /template/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/template/test/index.js -------------------------------------------------------------------------------- /template/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/template/webpack.config.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/test/index.js -------------------------------------------------------------------------------- /test/lib/generate-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/test/lib/generate-test.js -------------------------------------------------------------------------------- /test/lib/parseProps-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverfield-tools/cf-package/HEAD/test/lib/parseProps-test.js --------------------------------------------------------------------------------