-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
48 lines (48 loc) · 1.07 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": "clap-detector",
"version": "0.5.1",
"description": "Clap detection for node js (linux, raspberry systems)",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build:watch & node lib/demo",
"build:watch": "npx babel --watch -d lib src",
"build": "npx babel -d lib src"
},
"repository": {
"type": "git",
"url": "http://[email protected]/tom-s/clapDetector.git"
},
"keywords": [
"node",
"js",
"clap",
"trigger",
"detection",
"sox",
"alsa",
"microphone",
"raspberry",
"raspbian"
],
"author": "tom-s",
"licenses": [
{
"type": "MIT",
"url": "https://opensource.org/licenses/MIT"
}
],
"bugs": {
"url": "https://github.com/tom-s/clapDetector/issues"
},
"homepage": "https://github.com/tom-s/clapDetector#readme",
"dependencies": {
"app-root-path": "2.1.0",
"lodash": "4.17.21"
},
"devDependencies": {
"@babel/cli": "7.13.10",
"@babel/core": "7.13.10",
"@babel/preset-env": "7.13.10"
}
}