Welcome to mirror list, hosted at ThFree Co, Russian Federation.

info « scripts « ajv « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 77269ab5fa920ba1a0a1200837f0d5d429e127ec (plain)
1
2
3
4
5
6
7
8
9
10
#!/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]);