@checksub_team/peaks_timeline 1.4.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,88 @@
1
+ {
2
+ "name": "@checksub_team/peaks_timeline",
3
+ "version": "1.4.17",
4
+ "description": "JavaScript UI component for displaying audio waveforms",
5
+ "main": "./peaks.js",
6
+ "types": "./peaks.js.d.ts",
7
+ "files": [
8
+ "peaks.js",
9
+ "peaks.js.d.ts",
10
+ "src"
11
+ ],
12
+ "contributors": [
13
+ "Chris Finch (https://github.com/chrisfinch)",
14
+ "Thomas Parisot (https://github.com/oncletom)",
15
+ "Chris Needham (https://github.com/chrisn)"
16
+ ],
17
+ "keywords": [
18
+ "audio",
19
+ "visualisation",
20
+ "bbc",
21
+ "webaudio",
22
+ "browser",
23
+ "interactive",
24
+ "waveform"
25
+ ],
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "git://github.com/bbc/peaks.js.git"
29
+ },
30
+ "license": "LGPL-3.0",
31
+ "engines": {
32
+ "node": ">= 8.11.2"
33
+ },
34
+ "scripts": {
35
+ "prebuild": "npm run lint",
36
+ "build": "browserify -d -e ./src/main.js -t deamdify -s peaks | exorcist peaks.js.map | derequire - > peaks.js",
37
+ "postbuild": "cp peaks.js demo && cp peaks.js.map demo",
38
+ "doc": "jsdoc --private --destination docs --recurse src",
39
+ "lint": "eslint src/*.js test/**/*.js karma.conf.js",
40
+ "pretest": "npm run build",
41
+ "test": "karma start",
42
+ "test-watch": "npm test -- --auto-watch --no-single-run",
43
+ "prestart": "npm run build",
44
+ "start": "serve --listen 8080 --no-clipboard demo",
45
+ "prepack": "npm run build"
46
+ },
47
+ "devDependencies": {
48
+ "browserify": "~16.5.0",
49
+ "browserify-istanbul": "~3.0.1",
50
+ "chai": "~4.2.0",
51
+ "deamdify": "~0.3.0",
52
+ "derequire": "~2.0.3",
53
+ "eslint": "~6.8.0",
54
+ "exorcist": "~1.0.1",
55
+ "jsdoc": "~3.6.3",
56
+ "karma": "~4.4.1",
57
+ "karma-browserify": "~7.0.0",
58
+ "karma-browserstack-launcher": "~1.5.1",
59
+ "karma-chai-sinon": "~0.1.5",
60
+ "karma-chrome-launcher": "~3.1.0",
61
+ "karma-coverage": "~2.0.1",
62
+ "karma-firefox-launcher": "~1.3.0",
63
+ "karma-html2js-preprocessor": "~1.1.0",
64
+ "karma-mocha": "~1.3.0",
65
+ "karma-safari-launcher": "~1.0.0",
66
+ "karma-spec-reporter": "~0.0.32",
67
+ "mocha": "~7.0.1",
68
+ "serve": "~11.3.0",
69
+ "sinon": "~8.1.1",
70
+ "sinon-chai": "~3.4.0",
71
+ "watchify": "~3.11.1"
72
+ },
73
+ "dependencies": {
74
+ "colors.css": "~3.0.0",
75
+ "eventemitter2": "~6.0.0",
76
+ "konva": "~4.1.3",
77
+ "uuid": "^8.3.2",
78
+ "waveform-data": "~3.1.0"
79
+ },
80
+ "bugs": {
81
+ "url": "https://github.com/bbc/peaks.js/issues"
82
+ },
83
+ "homepage": "https://github.com/bbc/peaks.js#readme",
84
+ "directories": {
85
+ "test": "test"
86
+ },
87
+ "author": "Alexander Bychkov"
88
+ }