forked from bbc/peaks.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.3 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
{
"name": "peaks.js",
"version": "0.19.0",
"description": "JavaScript UI component for displaying audio waveforms",
"main": "./peaks.js",
"types": "./peaks.js.d.ts",
"files": [
"peaks.js",
"peaks.js.d.ts",
"src"
],
"contributors": [
"Chris Finch (https://github.com/chrisfinch)",
"Thomas Parisot (https://github.com/oncletom)",
"Chris Needham (https://github.com/chrisn)"
],
"keywords": [
"audio",
"visualisation",
"bbc",
"webaudio",
"browser",
"interactive",
"waveform"
],
"repository": {
"type": "git",
"url": "git://github.com/bbc/peaks.js.git"
},
"license": "LGPL-3.0",
"engines": {
"node": ">= 8.11.2"
},
"scripts": {
"prebuild": "npm run lint",
"build": "browserify -d -e ./src/main.js -t deamdify -s peaks | exorcist peaks.js.map | derequire - > peaks.js",
"postbuild": "cp peaks.js demo && cp peaks.js.map demo",
"doc": "jsdoc --private --destination docs --recurse src",
"lint": "eslint src/*.js test/**/*.js karma.conf.js",
"pretest": "npm run build",
"test": "karma start",
"test-watch": "npm test -- --auto-watch --no-single-run",
"copy-demo-files": "cp test_data/sample.mp3 demo && cp test_data/07023003.mp3 demo && cp test_data/07023003-2channel.dat demo",
"prestart": "npm run build && npm run copy-demo-files",
"start": "serve --listen 8080 --no-clipboard demo",
"prepack": "npm run build"
},
"devDependencies": {
"browserify": "~16.5.0",
"browserify-istanbul": "~3.0.1",
"chai": "~4.2.0",
"deamdify": "~0.3.0",
"derequire": "~2.0.3",
"eslint": "~6.8.0",
"exorcist": "~1.0.1",
"jsdoc": "~3.6.3",
"karma": "~4.4.1",
"karma-browserify": "~7.0.0",
"karma-browserstack-launcher": "~1.5.1",
"karma-chai-sinon": "~0.1.5",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.1",
"karma-firefox-launcher": "~1.3.0",
"karma-html2js-preprocessor": "~1.1.0",
"karma-mocha": "~1.3.0",
"karma-safari-launcher": "~1.0.0",
"karma-spec-reporter": "~0.0.32",
"mocha": "~7.1.1",
"serve": "~11.3.0",
"sinon": "~9.0.1",
"sinon-chai": "~3.5.0",
"watchify": "~3.11.1"
},
"dependencies": {
"colors.css": "~3.0.0",
"eventemitter2": "~6.2.1",
"konva": "~4.2.0",
"waveform-data": "~3.3.1"
}
}