diff --git a/.npmignore b/.npmignore deleted file mode 100644 index 5f6a848..0000000 --- a/.npmignore +++ /dev/null @@ -1,2 +0,0 @@ -# .npmignore file -test/ diff --git a/package.json b/package.json index 2aaa4b0..5380e51 100644 --- a/package.json +++ b/package.json @@ -2,25 +2,35 @@ "name": "ps-tree", "version": "1.1.0", "description": "Get all children of a pid", - "homepage": "http://github.com/indexzero/ps-tree", - "repository": { - "type": "git", - "url": "https://github.com/indexzero/ps-tree.git" - }, - "dependencies": { - "event-stream": "~3.3.0" - }, "license": "MIT", + "homepage": "http://github.com/indexzero/ps-tree#readme", + "repository": "github:indexzero/ps-tree", + "bugs": { + "url": "https://github.com/indexzero/ps-tree/issues", + "email": "charlie.robbins@gmail.com" + }, "author": "Charlie Robbins ", "contributors": [ - { - "name": "Zhuohuan LI", - "url": "https://github.com/zixia", - "email": "zixia@zixia.net" - } + "Zhuohuan LI (https://github.com/zixia)", + "Simone Primarosa (https://github.com/simonepri)" + ], + "keyboards": [ + "ps-tree", + "ps", + "tree", + "ppid", + "pid" + ], + "main": "index.js", + "bin": { + "ps-tree": "./bin/ps-tree.js" + }, + "files": [ + "bin", + "index.js" ], - "directories": { - "test": "test" + "engines": { + "node": ">= 0.10" }, "scripts": { "_comment": "https://github.com/gotwarlost/istanbul#usage-on-windows", @@ -28,6 +38,9 @@ "coverage": "npm test && istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100", "codeclimate": "cross-env CODECLIMATE_REPO_TOKEN=84436b4f13c70ace9c62e7f04928bf23c234eb212c0232d39d7fb1535beb2da5 codeclimate < coverage/lcov.info" }, + "dependencies": { + "event-stream": "~3.3.0" + }, "devDependencies": { "chalk": "^1.0.0", "codeclimate-test-reporter": "0.0.4", @@ -41,8 +54,5 @@ "pre-commit": [ "coverage", "codeclimate" - ], - "engines": { - "node": ">= 0.10" - } + ] }