├── .gitignore ├── .jshintrc ├── .npmignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── bin └── grunt-open ├── package.json └── tasks └── open.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | package-lock.json 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoverson/grunt-open/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoverson/grunt-open/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoverson/grunt-open/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoverson/grunt-open/HEAD/README.md -------------------------------------------------------------------------------- /bin/grunt-open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoverson/grunt-open/HEAD/bin/grunt-open -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoverson/grunt-open/HEAD/package.json -------------------------------------------------------------------------------- /tasks/open.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoverson/grunt-open/HEAD/tasks/open.js --------------------------------------------------------------------------------