forked from ArthurBeaulieu/AudioVisualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2 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
{
"name": "audiovisualizer",
"version": "1.0.0",
"description": "Web module to display audio visualization using WebAudioAPI.",
"keywords": [
"javascript",
"es6-module",
"oscilloscope",
"peakmeter",
"bars",
"spectrum",
"waveform",
"timeline"
],
"main": "src/js/AudioVisualizer.js",
"scripts": {
"build": "webpack --config webpack/webpack.prod.js",
"watch": "webpack --watch --config webpack/webpack.dev.js",
"server": "http-server -p 1337 -c-1 -o demo/example.html",
"test": "karma start test/karma.config.js",
"test-dev": "karma start test/karma.config.js --dev=true",
"doc": "jsdoc -c doc/jsDoc.json",
"beforecommit": "npm run test && npm run doc && npm run build"
},
"homepage": "https://github.com/ArthurBeaulieu/AudioVisualizer/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/ArthurBeaulieu/AudioVisualizer.git"
},
"bugs": {
"url": "https://github.com/ArthurBeaulieu/AudioVisualizer/issues"
},
"author": "Arthur Beaulieu",
"license": "GPL-3.0",
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.1",
"cssnano": "^5.1.12",
"eslint": "^8.20.0",
"eslint-webpack-plugin": "^3.2.0",
"file-loader": "^6.2.0",
"http-server": "^14.1.1",
"jasmine": "^4.2.1",
"jasmine-core": "^4.2.0",
"jsdoc": "^3.6.10",
"karma": "^6.4.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"karma-webpack": "^5.0.0",
"mini-css-extract-plugin": "^2.6.1",
"node-sass": "^7.0.1",
"postcss": "^8.4.14",
"postcss-import": "^14.1.0",
"postcss-loader": "^7.0.1",
"postcss-preset-env": "^7.7.2",
"sass-loader": "^13.0.2",
"stylelint": "^14.9.1",
"stylelint-webpack-plugin": "^3.3.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
}
}