├── .gitignore ├── .npmignore ├── .travis.yml └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules 3 | ddc 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .git 2 | sandbox 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | branches: 6 | only: 7 | - master 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This repository has moved to: https://github.com/yui/yuidoc 2 | 3 | Please update your bookmarks! 4 | 5 | ^davglass 05.09.2012 6 | --------------------------------------------------------------------------------