-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
62 lines (62 loc) · 2 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
{
"name": "web-bluetooth",
"version": "0.1.2",
"description": "Library for interacting with Bluetooth 4.0 devices through the browser.",
"keywords": [
"abstraction",
"API",
"ble",
"bluetooth",
"browser",
"client",
"developer",
"developer tool",
"experimental",
"framework",
"internet of things",
"library",
"web-bluetooth"
],
"homepage": "docs.sabertooth.io",
"author": "Alex Patch <[email protected]> (https://github.com/the-gingerbread-man)",
"contributors": [
"Alex Patch <[email protected]> (https://github.com/the-gingerbread-man)",
"Aaron Peltz <[email protected]> (https://github.com/apeltz)",
"Carlos Corral <[email protected]> (https://github.com/ccorral)",
"Daniel Lee <[email protected]> (https://github.com/dslee393)",
"Francois Beaufort (https://github.com/beaufortfrancois)"
],
"maintainers": "Alex Patch <[email protected]> (https://github.com/the-gingerbread-man)",
"repository": {
"type": "git",
"url": "git+https://github.com/sabertooth-io/web-bluetooth.git"
},
"bugs": {
"url": "https://github.com/sabertooth-io/web-bluetooth/issues",
"email": "[email protected]"
},
"main": "npm.js",
"scripts": {
"build": "npm run build:npm && npm run build:bower",
"build:npm": "babel lib --presets babel-preset-es2015 --out-dir dist/npm",
"build:bower": "browserify -t [babelify] lib/BluetoothDevice.js -o dist/build.js",
"prepublish": "npm run build",
"test": "open test/browser-integration.html",
"lint": "eslint lib/*.js && eslint lib/**/*.js"
},
"license": "Apache-2.0",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"chai": "^3.5.0",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"mocha": "^2.4.5",
"sinon": "^1.17.4"
}
}