1/* 2 Copyright (c) 2012, Yahoo! Inc. All rights reserved. 3 Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms. 4 */ 5var path = require('path'), 6 fs = require('fs'), 7 pkg = JSON.parse(fs.readFileSync(path.resolve(__dirname, '..', '..', 'package.json'), 'utf8')); 8 9module.exports = { 10 NAME: pkg.name, 11 VERSION: pkg.version 12}; 13 14 15