1
0
mirror of https://github.com/fuse-friends/fuse-native synced 2025-06-13 12:53:54 +00:00

Merge pull request #19 from ralphtheninja/prebuild

add prebuild
This commit is contained in:
Mathias Buus 2016-01-18 21:21:01 +01:00
commit 8399ef396c
2 changed files with 6 additions and 1 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@ node_modules
build build
deps/ deps/
npm-debug.log npm-debug.log
prebuilds/

View File

@ -4,12 +4,16 @@
"description": "Fully maintained fuse bindings for Node that aims to cover the entire FUSE api", "description": "Fully maintained fuse bindings for Node that aims to cover the entire FUSE api",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"test": "standard && tape test/*.js" "install": "prebuild --install",
"test": "standard && tape test/*.js",
"rebuild": "prebuild --compile",
"prebuild": "prebuild --all --strip --verbose"
}, },
"gypfile": true, "gypfile": true,
"dependencies": { "dependencies": {
"bindings": "^1.2.1", "bindings": "^1.2.1",
"nan": "^2.0.9", "nan": "^2.0.9",
"prebuild": "^2.8.1",
"xtend": "^4.0.0" "xtend": "^4.0.0"
}, },
"devDependencies": { "devDependencies": {