From 46b10d71a0cf03e922006173b5aeb6a69c125666 Mon Sep 17 00:00:00 2001 From: freestrings Date: Thu, 4 Apr 2019 17:48:59 +0900 Subject: [PATCH] Bump up nodejs 0.1.5 - Restore mocha test - Restore npm download badge --- README.md | 1 + nodejs/native/Cargo.toml | 4 ++-- nodejs/package-lock.json | 2 +- nodejs/package.json | 6 ++++-- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2652276..653911b 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ [![Build Status](https://travis-ci.org/freestrings/jsonpath.svg?branch=master)](https://travis-ci.org/freestrings/jsonpath) ![crates.io](https://img.shields.io/crates/v/jsonpath_lib.svg) ![Crates.io](https://img.shields.io/crates/d/jsonpath_lib.svg?label=%60jsonpath_lib%60%20crates.io%20downloads) +![npm](https://img.shields.io/npm/dt/jsonpath-rs.svg?label=%60jsonpath-rs%60%20npm%20downloads) `Rust` 버전 [JsonPath](https://goessner.net/articles/JsonPath/) 구현이다. `Webassembly`와 `Javascript`에서도 역시 동일한 API 인터페이스를 제공 한다. diff --git a/nodejs/native/Cargo.toml b/nodejs/native/Cargo.toml index a64c273..8af07c1 100644 --- a/nodejs/native/Cargo.toml +++ b/nodejs/native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jsonpath4nodejs" -version = "0.1.0" +version = "0.1.1" authors = ["Changseok Han "] description = "jsonpath_lib bindings for nodejs" keywords = ["library", "jsonpath", "json", "nodejs"] @@ -14,7 +14,7 @@ exclude = ["artifacts.json", "index.node"] neon-build = "0.2.0" [dependencies] -jsonpath_lib = "0.1.7" +jsonpath_lib = "0.1.8" neon = "0.2.0" neon-serde = "0.1.1" serde_json = { version = "1.0", features = ["preserve_order"] } diff --git a/nodejs/package-lock.json b/nodejs/package-lock.json index 76462a3..b78dc49 100644 --- a/nodejs/package-lock.json +++ b/nodejs/package-lock.json @@ -1,6 +1,6 @@ { "name": "jsonpath-rs", - "version": "0.1.0", + "version": "0.1.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/nodejs/package.json b/nodejs/package.json index e9c5793..f7342a1 100644 --- a/nodejs/package.json +++ b/nodejs/package.json @@ -1,6 +1,6 @@ { "name": "jsonpath-rs", - "version": "0.1.0", + "version": "0.1.5", "description": "It is JsonPath implementation. The core implementation is written in Rust", "author": "Changseok Han ", "license": "MIT", @@ -8,6 +8,7 @@ "jsonpath", "rust-binding", "rust", + "rustlang", "json" ], "main": "lib/index.js", @@ -15,7 +16,8 @@ "neon-cli": "^0.2.0" }, "scripts": { - "install": "./build.sh" + "install": "./build.sh", + "test": "mocha" }, "devDependencies": { "mocha": "^6.0.2"