forked from art19/peaks.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 3.01 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
{
"name": "peaks.js",
"version": "0.4.5",
"description": "Frontend app for displaying audio waveforms",
"main": "./src/main.js",
"contributors": [
"Chris Finch (https://github.com/chrisfinch)",
"Thomas Parisot <[email protected]> (https://github.com/oncletom)",
"Chris Needham (https://github.com/chrisn)"
],
"browserify": {
"transform": [
"deamdify"
]
},
"browser": {
"EventEmitter": "eventemitter2",
"peaks/markers/shapes/base": "./src/markers/shapes/base.js",
"peaks/markers/shapes/rect": "./src/markers/shapes/rect.js",
"peaks/markers/shapes/wave": "./src/markers/shapes/wave.js",
"peaks/markers/waveform.points": "./src/markers/waveform.points.js",
"peaks/markers/waveform.segments": "./src/markers/waveform.segments.js",
"peaks/player/player": "./src/player/player.js",
"peaks/player/player.keyboard": "./src/player/player.keyboard.js",
"peaks/views/waveform.overview": "./src/views/waveform.overview.js",
"peaks/views/waveform.zoomview": "./src/views/waveform.zoomview.js",
"peaks/views/zooms/animated": "./src/views/zooms/animated.js",
"peaks/views/zooms/static": "./src/views/zooms/static.js",
"peaks/waveform/waveform.axis": "./src/waveform/waveform.axis.js",
"peaks/waveform/waveform.core": "./src/waveform/waveform.core.js",
"peaks/waveform/waveform.mixins": "./src/waveform/waveform.mixins.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": {
"chai": "^3.5.0",
"github-changes": "^1.0.2",
"jshint": "^2.9.2",
"karma": "^0.13.22",
"karma-browserstack-launcher": "^1.0.1",
"karma-chrome-launcher": "^1.0.1",
"karma-firefox-launcher": "^1.0.0",
"karma-html2js-preprocessor": "^1.0",
"karma-ievms": "^0.1.0",
"karma-mocha": "^1.0.1",
"karma-requirejs": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"karma-sinon-chai": "^1.2.0",
"minifyify": "^7.3.3",
"mocha": "^2.5.3",
"requirejs": "^2.2.0",
"serve": "^1.4.0",
"lolex": "^1.5.0",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"eventemitter2": "^1.0.3",
"keypress.js": "^2.1.0-1",
"konva": "~0.13.0",
"waveform-data": "^1.5.1"
},
"optionalDependencies": {
"browserify": "^13.0.1",
"deamdify": "^0.2.0"
}
}