-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "balena-audio",
"version": "1.0.2",
"description": "Library to interact with balena's audio block",
"homepage": "https://github.com/balena-io-modules/audio#readme",
"main": "build/index.js",
"types": "build/index.d.ts",
"keywords": [
"balena",
"audio",
"block"
],
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/balena-io-modules/audio.git"
},
"bugs": {
"url": "https://github.com/balena-io-modules/audio/issues"
},
"files": [
"build/",
"README.md"
],
"scripts": {
"clean": "rimraf build",
"build": "npm run clean && tsc",
"lint": "balena-lint --typescript lib",
"lint-fix": "balena-lint --typescript --fix lib",
"test": "echo 0",
"prepack": "npm run build"
},
"devDependencies": {
"@balena/lint": "^5.4.2",
"husky": "^4.2.5",
"lint-staged": "^11.0.0",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.5.5"
},
"dependencies": {
"@tmigone/pulseaudio": "^1.0.4",
"ts-retry-promise": "^0.6.0"
},
"versionist": {
"publishedAt": "2022-03-29T13:22:52.339Z"
}
}