| 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
 | | { |  |   "name": "bindings", |  |   "description": "Helper module for loading your native module's .node file", |  |   "keywords": [ |  |     "native", |  |     "addon", |  |     "bindings", |  |     "gyp", |  |     "waf", |  |     "c", |  |     "c++" |  |   ], |  |   "version": "1.5.0", |  |   "author": "Nathan Rajlich <nathan@tootallnate.net> (http://tootallnate.net)", |  |   "repository": { |  |     "type": "git", |  |     "url": "git://github.com/TooTallNate/node-bindings.git" |  |   }, |  |   "main": "./bindings.js", |  |   "bugs": { |  |     "url": "https://github.com/TooTallNate/node-bindings/issues" |  |   }, |  |   "homepage": "https://github.com/TooTallNate/node-bindings", |  |   "license": "MIT", |  |   "dependencies": { |  |     "file-uri-to-path": "1.0.0" |  |   } |  | } | 
 |