DESCRIPTION file
The DESCRIPTION file is an essential part of an R package because it contains key metadata for the package that is used by repositories like CRAN and by R itself. In particular, this file contains the package name, the version number, the author and maintainer contact information, the license information, as well as any dependencies on other packages.
As an example, here is the DESCRIPTION file for the mvtsplot package on CRAN. This package provides a function for plotting multivariate time series data.
1Package: mvtsplot
2Version: 1.0-3
3Date: 2016-05-13
4Depends: R (>= 3.0.0)
5Imports: splines, graphics, grDevices, stats, RColorBrewer
6Title: Multivariate Time Series Plot
7Author: Roger D. Peng <rpeng@jhsph.edu>
8Maintainer: Roger D. Peng <rpeng@jhsph.edu>
9Description: A function for plotting multivariate time series data.
10License: GPL (>= 2)
11URL: https://github.com/rdpeng/mvtsplot