Comparing version 2.3.0 to 2.3.1
{ | ||
"name": "node-jq", | ||
"version": "2.3.0", | ||
"version": "2.3.1", | ||
"description": "Run jq in node", | ||
@@ -16,3 +16,4 @@ "main": "lib/jq.js", | ||
"lint": "standard --verbose | snazzy", | ||
"build": "swc src -d lib --copy-files", | ||
"build": "swc src --ignore src/__test__,src/*.d.ts --delete-dir-on-start -d lib", | ||
"copy-ts-defintions": "copyfiles src/*.d.ts lib -f", | ||
"postinstall": "npm run install-binary", | ||
@@ -66,2 +67,3 @@ "coverage": "nyc report --reporter=lcov", | ||
"codeclimate-test-reporter": "^0.5.1", | ||
"copyfiles": "^2.4.1", | ||
"mocha": "^9.0.1", | ||
@@ -68,0 +70,0 @@ "nyc": "^15.1.0", |
@@ -1,1 +0,1 @@ | ||
export default function(command: string, args: string[], stdin: string, cwd?: string): Promise<string> | ||
export default function(command: string, args: string[], stdin: string, cwd?: string): Promise<string> |
import { PartialOptions } from "./options" | ||
export function run(filter: string, json: any, options?: PartialOptions, jqPath?: string, cwd?: string): Promise<object | string> | ||
export function run(filter: string, json: any, options?: PartialOptions, jqPath?: string, cwd?: string): Promise<object | string> |
645797
14
41
3872