forked from bbc/waveform-data.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.45 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "waveform-data",
"version": "4.1.0",
"description": "Audio Waveform Data Manipulation API – resample, offset and segment waveform data in JavaScript",
"main": "waveform-data.js",
"types": "waveform-data.d.ts",
"files": [
"dist/waveform-data.js",
"waveform-data.js",
"webaudio.js",
"waveform-data.d.ts",
"lib"
],
"homepage": "https://github.com/bbc/waveform-data.js",
"scripts": {
"build": "browserify -r ./waveform-data.js -s WaveformData -o dist/waveform-data.js",
"pretest": "npm run build && npm run lint",
"test": "npm run test-node && npm run test-browsers",
"test-browsers": "karma start",
"test-node": "nyc --lines 0 mocha -R dot 'test/unit/*.js' 'test/unit/adapters/*.js'",
"posttest-node": "npm run lint",
"lint": "eslint karma.conf.js lib test",
"test-watch": "karma start --no-single-run",
"prepare": "npm run build",
"prestart": "npm run build && npm run copy-files",
"copy-files": "cp dist/waveform-data.js demo",
"start": "serve --listen 8080 --no-clipboard demo"
},
"repository": {
"type": "git",
"url": "git://github.com/bbc/waveform-data.js.git"
},
"keywords": [
"webaudio",
"waveform",
"audio",
"visualisation"
],
"contributors": [
"Thomas Parisot (https://github.com/oncletom)",
"Chris Needham (https://github.com/chrisn)"
],
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/bbc/waveform-data.js/issues"
},
"testling": {
"files": "test/unit/*.js",
"harness": "mocha-bdd",
"browsers": [
"ie/9..10",
"ff/latest..nightly",
"chrome/latest..canary",
"opera/latest..next",
"safari/latest",
"ipad/latest",
"android/latest"
]
},
"nyc": {
"check-coverage": true,
"reporter": [
"text",
"html"
]
},
"devDependencies": {
"brfs": "~2.0.2",
"browserify": "~17.0.0",
"chai": "~4.3.4",
"eslint": "~7.24.0",
"eslint-plugin-chai-friendly": "~0.6.0",
"karma": "~6.3.2",
"karma-browserify": "~8.0.0",
"karma-chrome-launcher": "~3.1.0",
"karma-firefox-launcher": "~2.1.0",
"karma-mocha": "~2.0.1",
"karma-safari-launcher": "~1.0.0",
"karma-spec-reporter": "~0.0.32",
"mocha": "~8.3.2",
"nyc": "~15.1.0",
"serve": "~11.3.2",
"sinon": "~10.0.0",
"sinon-chai": "~3.6.0",
"watchify": "~4.0.0",
"xvfb-maybe": "~0.2.1"
},
"dependencies": {
"inline-worker": "~1.1.0"
}
}