├── .editorconfig ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .jscsrc ├── .travis.yml ├── LICENSE ├── README.md ├── cli.js ├── lib ├── archive.js ├── extract.js └── options.js ├── media ├── demo.gif ├── dotconf.ai ├── dotconf.png ├── dotconf_med.png └── logo.png ├── package.json └── test ├── .editorconfig ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .idea ├── codeStyleSettings.xml ├── encodings.xml ├── inspectionProfiles │ ├── ProdMgmt.xml │ ├── Project_Default.xml │ └── profiles_settings.xml ├── jsLibraryMappings.xml ├── jsLinters │ └── jslint.xml ├── libraries │ ├── Node_js_Dependencies_for_collab.xml │ └── sass_stdlib.xml ├── misc.xml ├── modules.xml ├── prout.iml ├── runConfigurations │ ├── Debug_via_SSH_tunnel.xml │ ├── WebApp.xml │ ├── broker.xml │ ├── user.xml │ └── user_tests.xml ├── scopes │ ├── Exclude_node_modules.xml │ ├── ProdMgmt.xml │ └── Sources.xml └── vcs.xml ├── .jscsrc ├── .travis.yml └── index.spec.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/.jscsrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/README.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/cli.js -------------------------------------------------------------------------------- /lib/archive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/lib/archive.js -------------------------------------------------------------------------------- /lib/extract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/lib/extract.js -------------------------------------------------------------------------------- /lib/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/lib/options.js -------------------------------------------------------------------------------- /media/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/media/demo.gif -------------------------------------------------------------------------------- /media/dotconf.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/media/dotconf.ai -------------------------------------------------------------------------------- /media/dotconf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/media/dotconf.png -------------------------------------------------------------------------------- /media/dotconf_med.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/media/dotconf_med.png -------------------------------------------------------------------------------- /media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/media/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/package.json -------------------------------------------------------------------------------- /test/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.editorconfig -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /test/.idea/codeStyleSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.idea/codeStyleSettings.xml -------------------------------------------------------------------------------- /test/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.idea/encodings.xml -------------------------------------------------------------------------------- /test/.idea/inspectionProfiles/ProdMgmt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.idea/inspectionProfiles/ProdMgmt.xml -------------------------------------------------------------------------------- /test/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /test/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /test/.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /test/.idea/jsLinters/jslint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.idea/jsLinters/jslint.xml -------------------------------------------------------------------------------- /test/.idea/libraries/Node_js_Dependencies_for_collab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.idea/libraries/Node_js_Dependencies_for_collab.xml -------------------------------------------------------------------------------- /test/.idea/libraries/sass_stdlib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.idea/libraries/sass_stdlib.xml -------------------------------------------------------------------------------- /test/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.idea/misc.xml -------------------------------------------------------------------------------- /test/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.idea/modules.xml -------------------------------------------------------------------------------- /test/.idea/prout.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.idea/prout.iml -------------------------------------------------------------------------------- /test/.idea/runConfigurations/Debug_via_SSH_tunnel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.idea/runConfigurations/Debug_via_SSH_tunnel.xml -------------------------------------------------------------------------------- /test/.idea/runConfigurations/WebApp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.idea/runConfigurations/WebApp.xml -------------------------------------------------------------------------------- /test/.idea/runConfigurations/broker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.idea/runConfigurations/broker.xml -------------------------------------------------------------------------------- /test/.idea/runConfigurations/user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.idea/runConfigurations/user.xml -------------------------------------------------------------------------------- /test/.idea/runConfigurations/user_tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.idea/runConfigurations/user_tests.xml -------------------------------------------------------------------------------- /test/.idea/scopes/Exclude_node_modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.idea/scopes/Exclude_node_modules.xml -------------------------------------------------------------------------------- /test/.idea/scopes/ProdMgmt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.idea/scopes/ProdMgmt.xml -------------------------------------------------------------------------------- /test/.idea/scopes/Sources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.idea/scopes/Sources.xml -------------------------------------------------------------------------------- /test/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.idea/vcs.xml -------------------------------------------------------------------------------- /test/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.jscsrc -------------------------------------------------------------------------------- /test/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/.travis.yml -------------------------------------------------------------------------------- /test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoannmoinet/dotconf/HEAD/test/index.spec.js --------------------------------------------------------------------------------