jsonpath/nodejs/package.json

28 lines
574 B
JSON
Raw Normal View History

2019-03-14 22:30:42 +09:00
{
"name": "jsonpath-rs",
"version": "0.1.0",
"description": "It is JsonPath implementation. The core implementation is written in Rust",
2019-03-14 22:30:42 +09:00
"author": "Changseok Han <freestrings@gmail.com>",
"license": "MIT",
2019-03-27 22:09:20 +09:00
"keywords": [
"jsonpath",
"rust-binding",
"rust",
2019-03-27 22:09:20 +09:00
"json"
],
2019-03-14 22:30:42 +09:00
"main": "lib/index.js",
"dependencies": {
"neon-cli": "^0.2.0"
2019-03-14 22:30:42 +09:00
},
"scripts": {
"install": "./build.sh"
2019-03-14 22:30:42 +09:00
},
"devDependencies": {
"mocha": "^6.0.2"
2019-03-27 22:09:20 +09:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/freestrings/jsonpath.git"
2019-03-14 22:30:42 +09:00
}
}