├── .gitignore ├── .jshintrc ├── .travis.yml ├── Changes ├── LICENSE ├── README.md ├── gulp_tsd.json ├── gulpfile.js ├── index.js ├── lib └── tsd.js ├── package.json ├── test ├── .gitignore ├── gulp_tsd.json ├── gulp_tsd_latest.json ├── gulpfile.js ├── tsd.json ├── tsd_from_options.json ├── tsd_from_options_without_src.json └── tsd_latest.json └── tsd.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | typings/ 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moznion/gulp-tsd/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moznion/gulp-tsd/HEAD/.travis.yml -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moznion/gulp-tsd/HEAD/Changes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moznion/gulp-tsd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moznion/gulp-tsd/HEAD/README.md -------------------------------------------------------------------------------- /gulp_tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moznion/gulp-tsd/HEAD/gulp_tsd.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moznion/gulp-tsd/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moznion/gulp-tsd/HEAD/index.js -------------------------------------------------------------------------------- /lib/tsd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moznion/gulp-tsd/HEAD/lib/tsd.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moznion/gulp-tsd/HEAD/package.json -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moznion/gulp-tsd/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/gulp_tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moznion/gulp-tsd/HEAD/test/gulp_tsd.json -------------------------------------------------------------------------------- /test/gulp_tsd_latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moznion/gulp-tsd/HEAD/test/gulp_tsd_latest.json -------------------------------------------------------------------------------- /test/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moznion/gulp-tsd/HEAD/test/gulpfile.js -------------------------------------------------------------------------------- /test/tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moznion/gulp-tsd/HEAD/test/tsd.json -------------------------------------------------------------------------------- /test/tsd_from_options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moznion/gulp-tsd/HEAD/test/tsd_from_options.json -------------------------------------------------------------------------------- /test/tsd_from_options_without_src.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moznion/gulp-tsd/HEAD/test/tsd_from_options_without_src.json -------------------------------------------------------------------------------- /test/tsd_latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moznion/gulp-tsd/HEAD/test/tsd_latest.json -------------------------------------------------------------------------------- /tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moznion/gulp-tsd/HEAD/tsd.json --------------------------------------------------------------------------------