-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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": "@bbc/audio-orchestration-core",
"version": "0.1.2",
"description": "Components for synchronised object based audio experiences.",
"main": "dist/light.js",
"exports": {
".": "./dist/light.js",
"./*": "./dist/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bbc/audio-orchestration.git"
},
"author": "BBC R&D",
"license": "GPL-3.0-only",
"files": [
"dist"
],
"dependencies": {
"@bbc/audio-orchestration-bbcat-js": "^0.1.2",
"@bbc/audio-orchestration-cloud-sync-client": "^0.1.2",
"dvbcss-clocks": "^0.0.4",
"dvbcss-protocols": "^0.0.4",
"events": "^3.0.0",
"peerjs": "^1.3.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"ajv": "^6.10.2",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint-plugin-jest": "^24.4.0",
"jest": "^27.1.0"
},
"scripts": {
"dev": "webpack --mode=development --watch",
"build:dev": "webpack --mode=development",
"build": "webpack --mode=production",
"doc": "esdoc -c .esdoc.json",
"test": "jest",
"lint": "eslint src test"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
]
}
}