UNPKG

data-cli

Version:

CLI for working with data packages

107 lines (106 loc) 2.43 kB
{ "name": "data-cli", "version": "0.10.1", "description": "CLI for working with data packages", "main": "./lib/index.js", "bin": { "data": "./bin/data.js" }, "directories": { "test": "test" }, "scripts": { "test": "ava -v", "push:test": "ava -v test/push/ -m 'push*'", "watch:test": "npm t -- --watch", "lint": "xo --quiet", "data": "node bin/data.js", "gzip": "rm -rf packed/*.gz && ls packed/data* | xargs gzip -k", "pack": "pkg bin/data.js -c package.json -o packed/data --options no-warnings && npm run gzip", "precommit": "npm run lint && npm run build" }, "xo": { "space": true, "semicolon": false, "rules": { "no-var": "warn", "no-use-before-define": 1, "no-await-in-loop": 1, "import/prefer-default-export": 1, "no-negated-condition": 1, "guard-for-in": 1 }, "ignores": [ "test/fixtures/*/**" ] }, "ava": { "failFast": false, "files": [ "test/*test.js" ] }, "pkg": { "scripts": [ "bin/*", "lib/**/*" ], "targets": [ "node7-linux-x64", "node7-macos-x64", "node7-win-x64" ] }, "repository": { "type": "git", "url": "git+https://github.com/datahq/data-cli.git" }, "keywords": [ "data", "data package", "datahub", "datapackage" ], "author": "Rufus Pollock and DataHQ", "license": "ISC", "bugs": { "url": "https://github.com/datahq/data-cli/issues" }, "homepage": "https://datahub.io/docs", "dependencies": { "ansi-escapes": "^3.0.0", "boxen": "^1.3.0", "chalk": "^2.3.0", "clipboardy": "^1.2.3", "data.js": "^0.11.5", "datahub-client": "^0.5.8", "first-run": "^1.2.0", "global-packages": "^1.0.2", "human-readable-ids": "^1.0.3", "inquirer": "^5.1.0", "inquirer-test": "^2.0.1", "jsonlint": "^1.6.2", "marked": "^0.3.6", "marked-terminal": "^2.0.0", "minimist": "^1.2.0", "mkdirp": "^0.5.1", "ora": "^1.3.0", "pkg": "4.2.5", "progress": "^2.0.0", "raven": "^2.4.2", "universal-analytics": "^0.4.16", "unzip": "^0.1.11", "update-notifier": "^2.3.0", "url-join": "^2.0.2", "xlsx": "^0.10.8" }, "devDependencies": { "ava": "^0.25.0", "cross-spawn": "^5.1.0", "stream-to-array": "^2.3.0", "xo": "^0.18.2" }, "resolutions": { "graceful-fs": "^4.2.4" } }