source: frontend/node_modules/ajv/scripts/info

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 289 bytes
Line 
1#!/usr/bin/env node
2
3'use strict';
4
5var fs = require('fs');
6var name = process.argv[2] || '.';
7var property = process.argv[3] || 'version';
8if (name != '.') name = 'node_modules/' + name;
9var json = JSON.parse(fs.readFileSync(name + '/package.json', 'utf8'));
10console.log(json[property]);
Note: See TracBrowser for help on using the repository browser.