-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
41 lines (41 loc) · 1.01 KB
/
package.json
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
38
39
40
41
{
"name": "raspi-sonar",
"version": "1.1.1",
"description": "Native Node Addon to read Ultrasonic sensors using a RaspberryPi",
"keywords": [
"raspberrypi",
"ultrasonic",
"nodebots",
"robots"
],
"main": "lib/index.js",
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.6.2",
"raspi-peripheral": "^1.4.0",
"raspi-wiringpi": "^1.0.6"
},
"devDependencies": {
"babel-preset-es2015": "^6.5.0",
"del": "^2.2.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^2.0.0",
"gulp-sourcemaps": "^1.6.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node-gyp rebuild"
},
"repository": {
"type": "git",
"url": "https://github.com/sesh-kebab/raspi-sonar.git"
},
"author": "Seshi Chemudugunta <[email protected]>",
"license": "ISC",
"gypfile": true,
"bugs": {
"url": "https://github.com/sesh-kebab/raspi-sonar/issues"
},
"homepage": "https://github.com/sesh-kebab/raspi-sonar"
}