forked from bbc/peaks.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.07 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 3.07 KB
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
{
"name": "peaks.js",
"version": "0.4.6",
"description": "Frontend app for displaying audio waveforms",
"main": "./src/main.js",
"contributors": [
"Chris Finch (https://github.com/chrisfinch)",
"Thomas Parisot <thomas.parisot@bbc.co.uk> (https://github.com/oncletom)",
"Chris Needham (https://github.com/chrisn)"
],
"keywords": [
"audio",
"visualisation",
"bbc",
"webaudio",
"browser",
"interactive",
"waveform"
],
"browserify": {
"transform": [
"deamdify"
]
},
"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/bbcrd/peaks.js.git"
},
"license": "LGPL-3.0",
"scripts": {
"build": "browserify -d ./src/main.js -p [minifyify --map peaks.min.map --output peaks.min.map] -s peaks -o peaks.min.js",
"build-max": "browserify ./src/main.js -s peaks -o peaks.js",
"test": "npm run test-pre && ./node_modules/karma/bin/karma start --single-run",
"test-pre": "jshint ./src",
"test-watch": "./node_modules/karma/bin/karma start --auto-watch --no-single-run",
"preversion": "npm test",
"version": "npm run changelog && npm run build && git add CHANGELOG.md",
"changelog": "github-changes -o bbcrd -r peaks.js -n ${npm_package_version} -a --only-pulls --use-commit-body",
"start": "serve --cors -p 9000"
},
"devDependencies": {
"browserify": "^11.2.0",
"chai": "^3.0.0",
"github-changes": "^1.0.0",
"jshint": "^2.5.1",
"karma": "^0.12.0",
"karma-browserstack-launcher": "^0.1.1",
"karma-chrome-launcher": "^0.2.0",
"karma-firefox-launcher": "^0.1.0",
"karma-html2js-preprocessor": "^0.1",
"karma-ievms": "^0.0.4",
"karma-mocha": "^0.2.0",
"karma-requirejs": "^0.2.2",
"karma-safari-launcher": "^0.1.1",
"karma-sinon-chai": "^1.0.0",
"minifyify": "^7.0.2",
"mocha": "^1.17.1",
"requirejs": "^2.1.15",
"serve": "^1.4.0"
},
"dependencies": {
"deamdify": "^0.1.1",
"eventemitter2": "^0.4.14",
"konva": "~0.9.5",
"waveform-data": "^1.5.1"
}
}