Moved js-yaml to dependencies.

The index.js script which imports our eslint configuration requires
that js-yaml be accessible, however it was not included in the
project's dependencies. This moves it from devDependencies (installed
during packaging) to dependencies (installed always).

Change-Id: I7f7b0967b86f5312f5801fb4dbfbe72a453583aa
This commit is contained in:
Michael Krotscheck 2015-07-09 11:37:18 -07:00
parent 4eeb8fe478
commit 499208e3a8
1 changed files with 4 additions and 2 deletions

View File

@ -33,7 +33,9 @@
},
"devDependencies": {
"eslint": "0.23.0",
"jasmine": "^2.3.1",
"js-yaml": "3.3.1"
"jasmine": "2.3.1"
},
"dependencies": {
"js-yaml": "^3.3.1"
}
}