-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
104 lines (104 loc) · 3.21 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "videojs-wavesurfer",
"version": "3.10.0",
"description": "video.js plugin that adds a navigable waveform for audio and video files.",
"author": "Collab",
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/collab-project/videojs-wavesurfer/issues"
},
"homepage": "https://github.com/collab-project/videojs-wavesurfer",
"main": "dist/videojs.wavesurfer.js",
"style": "dist/css/videojs.wavesurfer.css",
"sass": "src/css/videojs.wavesurfer.scss",
"directories": {
"docs": "./docs",
"lib": "./src",
"example": "./examples",
"test": "./test"
},
"repository": {
"type": "git",
"url": "https://github.com/collab-project/videojs-wavesurfer.git"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run lint && npm run build:dev && npm run build:min",
"build:dev": "webpack --config ./build-config/webpack.dev.main.js",
"build:min": "webpack --config ./build-config/webpack.prod.main.js",
"docs": "npm-run-all docs:*",
"docs:api": "rimraf docs/api && esdoc",
"lint": "npm-run-all lint:*",
"lint:js": "eslint src/js test build-config",
"lint:html": "htmlhint examples docs/demo",
"start": "npm run build && webpack serve --config ./build-config/webpack.dev.main.js",
"start-doc": "docsify serve docs",
"test": "karma start karma.conf.js",
"prepublishOnly": "not-in-install && npm run build || in-install"
},
"files": [
"dist/",
"src/"
],
"keywords": [
"waveform",
"audio",
"video",
"wavesurfer",
"videojs",
"videojs-plugin",
"player"
],
"dependencies": {
"video.js": ">=7.0.5",
"wavesurfer.js": ">=6.3.0 <7.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/register": "^7.24.6",
"@chiragrupani/karma-chromium-edge-launcher": "^2.4.1",
"@jsdevtools/host-environment": "^2.1.2",
"@jsdevtools/karma-host-environment": "^3.0.3",
"add-zero": "^1.0.0",
"babel-loader": "^9.2.1",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-istanbul": "^7.0.0",
"browserslist": "^4.23.3",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"date-fns": "^4.1.0",
"docsify-cli": "^4.4.4",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^9.10.0",
"eslint-plugin-jsdoc": "^50.2.3",
"htmlhint": "^1.1.4",
"in-publish": "^2.0.1",
"jasmine-core": "^5.3.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-detect-browsers": "^2.3.3",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-matchers": "^5.0.0",
"karma-verbose-reporter": "0.0.8",
"karma-webpack": "^5.0.1",
"mini-css-extract-plugin": "^2.9.1",
"npm-run-all": "^4.1.5",
"parse-ms": "^3.0.0",
"replace-in-file": "^7.2.0",
"rimraf": "^6.0.1",
"sass": "^1.78.0",
"sass-loader": "^16.0.1",
"style-loader": "^4.0.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1",
"webpack-remove-empty-scripts": "^1.0.4",
"webrtc-adapter": "^9.0.1"
}
}