-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
42 lines (42 loc) · 1.26 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
{
"name": "webjack",
"version": "0.1.6",
"description": "A library to connect to an Arduino microcontroller from a website via serial over the audio jack, using WebRTC.",
"main": "dist/webjack.js",
"scripts": {
"postinstall": "if [ -f node_modules/webrtc-adapter/out/adapter.js ]; then cp node_modules/webrtc-adapter/out/adapter.js examples/; fi && if [ -f node_modules/webrtc-adapter/out/adapter.js ]; then cp node_modules/jquery/dist/jquery.min.js examples/; fi",
"test": "tape test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/publiclab/webjack.git"
},
"keywords": [
"serial",
"webrtc",
"arduino",
"public",
"lab"
],
"author": "Public Lab",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/publiclab/webjack/issues"
},
"dependencies": {},
"devDependencies": {
"blue-tape": "^1.0.0",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-uglify": "^5.0.0",
"grunt-contrib-watch": "^1.0.0",
"jquery": "^3.1.0",
"matchdep": "^2.0.0",
"sinon": "^7.2.2",
"tape": "^5.0.1",
"wav-decoder": "^1.1.0",
"webrtc-adapter": "^1.1.0"
},
"homepage": "https://github.com/publiclab/webjack#readme"
}