-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 975 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 975 Bytes
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
{
"name": "multiwii",
"version": "0.4.1",
"description": "A library for sending and parsing messages to/from a MultiWii device using Node.js",
"main": "index.js",
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git://github.com/JohanObrink/node-multiwii.git"
},
"keywords": [
"multiwii",
"copter"
],
"author": "Johan Öbrink <johan.obrink@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JohanObrink/node-multiwii/issues"
},
"homepage": "https://github.com/JohanObrink/node-multiwii",
"dependencies": {
"serialport": "~1.3.1",
"q": "~1.0.1"
},
"devDependencies": {
"sinon-chai": "~2.5.0",
"proxyquire": "~0.5.3",
"jshint-stylish": "~0.1.5",
"chai": "~1.9.1",
"grunt-mocha-test": "~0.10.0",
"sinon": "~1.9.0",
"mocha": "~1.18.2",
"grunt-contrib-watch": "~0.6.1",
"grunt": "~0.4.4",
"grunt-contrib-jshint": "~0.9.2"
}
}