-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 852 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "fuso",
"version": "0.0.1",
"description": "an utility to transform json to json, like camaro but using jsonpath",
"main": "index.js",
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"test": "node test"
},
"repository": {
"type": "git",
"url": "git://github.com/tuananh/fuso.git"
},
"keywords": [
"json",
"transform",
"jsonpath"
],
"author": "Tuan Anh Tran <me@tuananh.org> (https://tuananh.org)",
"license": "MIT",
"dependencies": {
"nan": "2.7.0",
"node-pre-gyp": "0.6.39"
},
"devDependencies": {
"tape": "4.8.0"
},
"bundledDependencies": [
"node-pre-gyp"
],
"binary": {
"module_name": "fuso",
"module_path": "./lib/binding/",
"host": "https://github.com/tuananh/fuso/releases/download/",
"remote_path": "{version}"
}
}