-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
example: platform: Install gpio module (#31)
Using sysfs Change-Id: I5cb06e6d98a10924bdff1b5988996c610f64081a Origin: https://github.com/rzr/webthing-iotjs Forwarded: #31 Signed-off-by: Philippe Coval <p.coval@samsung.com>
- Loading branch information
1 parent
eff5122
commit 0092be5
Showing
2 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"name": "board-webthings", | ||
"version": "0.0.0", | ||
"description": "Various Single Board computers's I/O implemented as webthings", | ||
"main": "index.js", | ||
"scripts": { | ||
"start": "NODE_PATH=.:../.. node index", | ||
"flex-phat": "NODE_PATH=.:../.. node index flex-phat", | ||
"play-phat": "NODE_PATH=.:../.. node index play-phat" | ||
}, | ||
"author": "Philippe Coval <p.coval@samsung.com>", | ||
"license": "MPL-2.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/rzr/webthing-iotjs.git" | ||
}, | ||
"keywords": [ | ||
"webthing", | ||
"wot", | ||
"raspberry-pi", | ||
"ARTIK" | ||
], | ||
"bugs": { | ||
"url": "https://github.com/rzr/webthing-iotjs/issues" | ||
}, | ||
"bin": { | ||
"board-webthings": "./index.js" | ||
}, | ||
"homepage": "https://github.com/rzr/webthing-iotjs", | ||
"dependencies": { | ||
"gpio": "^0.2.9" | ||
} | ||
} |