mirror of
https://github.com/Turfjs/turf.git
synced 2025-12-08 20:26:16 +00:00
10 lines
311 B
JavaScript
10 lines
311 B
JavaScript
#!/usr/bin/env node
|
|
|
|
const pckg = require('../packages/turf/package.json');
|
|
|
|
Object.keys(pckg.dependencies).forEach(name => {
|
|
const basename = name.replace('@turf/', '');
|
|
const url = `https://github.com/Turfjs/turf/tree/master/packages/turf-${basename}`;
|
|
console.log(`- [ ] [${name}](${url})`);
|
|
});
|