├── .github └── FUNDING.yml ├── .gitignore ├── .npmrc ├── .travis.yml ├── COPYING ├── README.md ├── index.js ├── package.json └── test.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kagami/gulp-ng-annotate/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /npm-debug.log 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kagami/gulp-ng-annotate/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kagami/gulp-ng-annotate/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kagami/gulp-ng-annotate/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kagami/gulp-ng-annotate/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kagami/gulp-ng-annotate/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kagami/gulp-ng-annotate/HEAD/test.js --------------------------------------------------------------------------------