mirror of
https://github.com/nodejs/node.git
synced 2025-05-07 13:47:16 +00:00

Greatly simplify how ESLint and its plugins are installed. PR-URL: https://github.com/nodejs/node/pull/53413 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
11 lines
289 B
JavaScript
11 lines
289 B
JavaScript
#!/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]);
|