forked from mochman/mmm-usonic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.81 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "mmm-usonic",
"version": "2.5.4",
"description": "A high performance, memory mapped, Node.js API for the HC-SR04 ultrasonic sensor connected to a Raspberry Pi.",
"keywords": [
"raspberry",
"pi",
"ultrasonic",
"sensor",
"hcsr04",
"gpio",
"mmap"
],
"author": {
"name": "Clemens Akens w/ Luke Moch",
"email": "[email protected]",
"url": "http://github.com/mochman"
},
"bugs": {
"url": "https://github.com/mochman/mmm-usonic/issues"
},
"engines": {
"node": ">= 0.10.0"
},
"inceptionYear": 2014,
"license": "MIT",
"main": "lib/usonic.js",
"repository": {
"type": "git",
"url": "https://github.com/mochman/mmm-usonic.git"
},
"config": {
"mocha-cov-reporter": {
"failOnError": true,
"threshold": 0,
"useColors": true
}
},
"scripts": {
"install": "node-gyp configure build",
"test": "node_modules/.bin/grunt"
},
"dependencies": {
"expressive-assertion": "~1.5.1",
"math-statistics": "~1.2.0",
"nan": "latest",
"mmm-gpio": "https://github.com/ludook/mmm-gpio#master",
"typesystem": "~5.0.0"
},
"devDependencies": {
"blanket": "latest",
"grunt": "latest",
"grunt-bumpup": "latest",
"grunt-cli": "latest",
"grunt-contrib-jshint": "latest",
"grunt-coveralls": "latest",
"grunt-jscs": "latest",
"grunt-mocha-test": "latest",
"grunt-module": "latest",
"load-grunt-tasks": "latest",
"mocha": "latest",
"mocha-cov-reporter": "latest",
"mocha-lcov-reporter": "latest",
"node-mock": "latest",
"time-grunt": "latest"
}
}