Sha256: 968d2c2ddee5a5a298c9eb0714a0faa1c2681581e26c75416ee3ef1591d98bdb
Contents?: true
Size: 536 Bytes
Versions: 6
Compression:
Stored size: 536 Bytes
Contents
#!/usr/bin/env node /* Copyright(c) 2019 - present, Blue Marble Payroll, LLC This source code is licensed under the MIT license found in the LICENSE file in the root directory of this source tree. */ 'use strict' const path = require('path'); const fs = require('fs'); const dateHolidaysIndexJsPath = require.resolve('date-holidays'); const dateHolidaysPackageJsonPath = path.join( path.dirname(dateHolidaysIndexJsPath), '..', 'package.json' ); console.log(JSON.parse(fs.readFileSync(dateHolidaysPackageJsonPath)).version);
Version data entries
6 entries across 6 versions & 1 rubygems