Comparing version 0.1.6 to 0.1.9
@@ -6,4 +6,4 @@ #! /usr/bin/env node | ||
// const fs = require('fs'); | ||
// | ||
var fs = require('fs'); | ||
// function recurse (path) { | ||
@@ -25,5 +25,8 @@ // const stat = fs.statSync(path); | ||
function checkdeps() { | ||
var cwd = process.cwd(); | ||
console.log(cwd); | ||
} | ||
(function () { | ||
var cwd = process.cwd(); | ||
// TODO: rest of code | ||
console.log('Not implemented yet'); | ||
})(); |
const del = require('del'), | ||
gulp = require('gulp'), | ||
babel = require('gulp-babel'), | ||
notice = require('gulp-notice'); | ||
chmod = require('gulp-chmod'); | ||
@@ -13,3 +13,3 @@ gulp.task('clean', () => { | ||
.pipe(babel()) | ||
// .pipe(notice()) | ||
.pipe(chmod(755)) | ||
.pipe(gulp.dest('dist')); | ||
@@ -16,0 +16,0 @@ }); |
{ | ||
"name": "checkdeps", | ||
"version": "0.1.6", | ||
"version": "0.1.9", | ||
"description": "Check dependencies of a Node.js project against package.json", | ||
"main": "dist/index.js", | ||
"bin": "dist/index.js", | ||
@@ -26,10 +25,10 @@ "scripts": { | ||
"devDependencies": { | ||
"babel-plugin-transform-runtime": "^6.4.3", | ||
"babel-preset-es2015": "^6.3.13", | ||
"babel-preset-stage-3": "^6.3.13", | ||
"del": "^2.2.0", | ||
"gulp": "^3.9.0", | ||
"gulp-babel": "^6.1.1", | ||
"gulp-notice": "^1.0.3", | ||
"babel-plugin-transform-runtime": "^6.4.3", | ||
"babel-preset-es2015": "^6.3.13", | ||
"babel-preset-stage-3": "^6.3.13" | ||
"gulp-chmod": "^1.3.0" | ||
} | ||
} |
@@ -5,4 +5,4 @@ #! /usr/bin/env node | ||
// const fs = require('fs'); | ||
// | ||
const fs = require('fs'); | ||
// function recurse (path) { | ||
@@ -24,5 +24,9 @@ // const stat = fs.statSync(path); | ||
function checkdeps () { | ||
const cwd = process.cwd(); | ||
console.log(cwd); | ||
} | ||
(() => { | ||
const cwd = process.cwd(); | ||
// TODO: rest of code | ||
console.log('Not implemented yet'); | ||
})(); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3782
2