forked from bbc/peaks.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.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
81
82
83
84
85
86
87
{
"name": "peaks.js",
"version": "0.5.0",
"description": "Frontend app for displaying audio waveforms",
"main": "./index.js",
"contributors": [
"Chris Finch (https://github.com/chrisfinch)",
"Thomas Parisot <[email protected]> (https://github.com/oncletom)",
"Chris Needham (https://github.com/chrisn)"
],
"keywords": [
"audio",
"visualisation",
"bbc",
"webaudio",
"browser",
"interactive",
"waveform"
],
"browser": {
"EventEmitter": "eventemitter2",
"peaks/player/player": "./src/main/player/player.js",
"peaks/player/player.keyboard": "./src/main/player/player.keyboard.js",
"peaks/waveform/waveform.axis": "./src/main/waveform/waveform.axis.js",
"peaks/waveform/waveform.core": "./src/main/waveform/waveform.core.js",
"peaks/waveform/waveform.mixins": "./src/main/waveform/waveform.mixins.js",
"peaks/views/waveform.overview": "./src/main/views/waveform.overview.js",
"peaks/views/waveform.zoomview": "./src/main/views/waveform.zoomview.js",
"peaks/views/zooms/animated": "./src/main/views/zooms/animated.js",
"peaks/views/zooms/static": "./src/main/views/zooms/static.js",
"peaks/markers/waveform.points": "./src/main/markers/waveform.points.js",
"peaks/markers/waveform.segments": "./src/main/markers/waveform.segments.js",
"peaks/markers/shapes/base": "./src/main/markers/shapes/base.js",
"peaks/markers/shapes/rect": "./src/main/markers/shapes/rect.js",
"peaks/markers/shapes/wave": "./src/main/markers/shapes/wave.js"
},
"repository": {
"type": "git",
"url": "git://github.com/bbc/peaks.js.git"
},
"license": "LGPL-3.0",
"scripts": {
"build": "npm run build:main && npm run build:standalone",
"build:main": "browserify -e ./src/main.js -t deamdify | derequire - > index.js",
"build:standalone": "browserify -d -e ./src/main.js -t deamdify -s peaks | exorcist peaks.js.map | derequire - > peaks.js",
"doc": "jsdoc --private --destination docs --recurse src",
"eslint": "eslint src/**/*.js test/**/*.js",
"test": "./node_modules/karma/bin/karma start --single-run",
"pretest": "jshint ./src",
"test-watch": "./node_modules/karma/bin/karma start --auto-watch --no-single-run",
"version": "npm run changelog && npm run build && git add CHANGELOG.md",
"changelog": "github-changes -o bbc -r peaks.js -n ${npm_package_version} --only-pulls --use-commit-body",
"prestart": "npm run build",
"prepublish": "npm run build",
"start": "serve --cors -p 9000"
},
"devDependencies": {
"browserify": "^13.0.0",
"chai": "^3.0.0",
"deamdify": "^0.2.0",
"derequire": "^2.0.3",
"eslint": "^3.2.2",
"exorcist": "^0.4.0",
"github-changes": "^1.0.0",
"jsdoc": "~3.4.1",
"jshint": "^2.5.1",
"karma": "^1.1.0",
"karma-browserstack-launcher": "^1.0.0",
"karma-chrome-launcher": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-html2js-preprocessor": "^1.0.0",
"karma-ievms": "^0.1.0",
"karma-mocha": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"karma-sinon-chai": "^1.0.0",
"karma-spec-reporter": "~0.0.26",
"mocha": "^2.5.0",
"serve": "^1.4.0",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"eventemitter2": "~1.0.0",
"konva": "~1.0.0",
"waveform-data": "^1.5.2"
}
}