├── .esm-wrapper.mjs ├── .gitignore ├── .npmignore ├── .taprc ├── .travis.yml ├── LICENSE ├── README.md ├── binding.cc ├── binding.gyp ├── index.d.ts ├── index.js ├── package.json └── test.js /.esm-wrapper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addaleax/nice-napi/HEAD/.esm-wrapper.mjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addaleax/nice-napi/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .github 2 | .nyc_output 3 | package-lock.json 4 | coverage 5 | examples 6 | -------------------------------------------------------------------------------- /.taprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addaleax/nice-napi/HEAD/.taprc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addaleax/nice-napi/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addaleax/nice-napi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addaleax/nice-napi/HEAD/README.md -------------------------------------------------------------------------------- /binding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addaleax/nice-napi/HEAD/binding.cc -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addaleax/nice-napi/HEAD/binding.gyp -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addaleax/nice-napi/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addaleax/nice-napi/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addaleax/nice-napi/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addaleax/nice-napi/HEAD/test.js --------------------------------------------------------------------------------