1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-25 05:15:56 +00:00
notes/node_modules/ajv/scripts/info

11 lines
289 B
Plaintext
Raw Normal View History

2017-03-09 18:16:08 +00:00
#!/usr/bin/env node
'use strict';
var fs = require('fs');
var name = process.argv[2] || '.';
var property = process.argv[3] || 'version';
if (name != '.') name = 'node_modules/' + name;
var json = JSON.parse(fs.readFileSync(name + '/package.json', 'utf8'));
console.log(json[property]);