-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
{
"name": "web-sensors",
"version": "0.5.3",
"description": "sensor streams for reactive applications",
"main": "lib/index.js",
"scripts": {
"start": "node lib/index.js",
"test": "npm run build; node_modules/.bin/webpack-dev-server --config webpack.config.js",
"build": "babel src -d lib",
"prepublish": "npm run build"
},
"keywords": [
"client",
"html5",
"sensors",
"streams",
"getUserMedia",
"noise",
"rxjs",
"audio",
"video"
],
"author": "johnny snelgrove <[email protected]> (https://github.com/jsnelgro)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/jsnelgro/web-sensors"
},
"babel": {
"presets": [
"babel-preset-es2015"
]
},
"dependencies": {
"getusermedia": "^2.0.1",
"noisejs": "^2.1.0",
"requestanimationframe": "0.0.23",
"rx-dom": "^7.0.3",
"rx-lite": "^4.0.8"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"expect.js": "^0.3.1",
"mocha": "^3.2.0",
"webpack-dev-server": "^2.4.1"
}
}