forked from noble/noble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 878 Bytes
/
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
{
"author": "Sandeep Mistry <[email protected]>",
"name": "noble",
"description": "A node.js BLE (Bluetooth low energy) library.",
"version": "0.1.3",
"repository": {
"type": "git",
"url": "https://github.com/sandeepmistry/noble.git"
},
"bugs": {
"url": "https://github.com/sandeepmistry/noble/issues"
},
"keywords": [
"bluetooth",
"BLE",
"bluetooth low energy",
"bluetooth smart"
],
"main": "./index.js",
"engines": {
"node": ">=0.8"
},
"os": [ "darwin", "linux" ],
"dependencies": {
"debug": "~0.7.2"
},
"devDependencies": {
"jshint": "latest",
"mocha": "~1.8.2",
"should": "~1.2.2",
"coffee-script": "~1.6.2",
"sinon": "~1.6.0"
},
"scripts": {
"install": "node install.js",
"pretest": "jshint *.js lib/**/*.js test/*.js",
"test": "mocha -R spec test/*.js"
}
}