diff --git a/notNeededPackages.json b/notNeededPackages.json index f8bbe37fb3..4936b581f4 100644 --- a/notNeededPackages.json +++ b/notNeededPackages.json @@ -1302,6 +1302,12 @@ "sourceRepoURL": "https://github.com/sindresorhus/filter-console", "asOfVersion": "0.1.1" }, + { + "libraryName": "find-process", + "typingsPackageName": "find-process", + "sourceRepoURL": "https://github.com/yibn2008/find-process", + "asOfVersion": "1.2.0" + }, { "libraryName": "find-java-home", "typingsPackageName": "find-java-home", diff --git a/types/find-process/find-process-tests.ts b/types/find-process/find-process-tests.ts deleted file mode 100644 index 0f43ada399..0000000000 --- a/types/find-process/find-process-tests.ts +++ /dev/null @@ -1,16 +0,0 @@ -/// - -import find = require('find-process'); - -find('pid', 12345).then((processList) => { - processList.forEach((ps) => { - console.log('Full command with args: ' + ps.cmd); - console.log('User group ID (for *nix): ' + ps.gid); - console.log('command/process name: ' + ps.name); - console.log('Process ID: ' + ps.pid); - console.log('Parent process ID: ' + ps.ppid); - console.log('User ID (for *nix): ' + ps.uid); - }); -}, (err) => { - console.log(err.stack || err); -}); diff --git a/types/find-process/index.d.ts b/types/find-process/index.d.ts deleted file mode 100644 index 078a36c0aa..0000000000 --- a/types/find-process/index.d.ts +++ /dev/null @@ -1,10 +0,0 @@ -// Type definitions for find-process 1.1 -// Project: https://github.com/yibn2008/find-process -// Definitions by: Buaban Buataitom -// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped -// TypeScript Version: 2.3 - -declare function find(by: string, value: string | number): Promise>; -declare namespace find {} - -export = find; diff --git a/types/find-process/tsconfig.json b/types/find-process/tsconfig.json deleted file mode 100644 index 4b17c53c33..0000000000 --- a/types/find-process/tsconfig.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "compilerOptions": { - "module": "commonjs", - "lib": ["es6"], - "noImplicitAny": true, - "noImplicitThis": true, - "strictNullChecks": true, - "strictFunctionTypes": true, - "baseUrl": "../", - "typeRoots": ["../"], - "types": [], - "noEmit": true, - "forceConsistentCasingInFileNames": true - }, - "files": ["index.d.ts", "find-process-tests.ts"] -} diff --git a/types/find-process/tslint.json b/types/find-process/tslint.json deleted file mode 100644 index f93cf8562a..0000000000 --- a/types/find-process/tslint.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "dtslint/dt.json" -}