forked from foobar404/wave.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "@foobar404/wave",
"version": "1.2.4",
"description": "Audio visualizer library for javascript (20+ designs).",
"main": "dist/bundle.cjs.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npx npm-run-all --parallel server watch",
"server": "npx http-server ./ -o ./test/index.html -c-1",
"build": "npx rollup -c",
"watch": "npx watch \"npm run build\" ./src"
},
"keywords": [
"audio",
"visualizer",
"wave",
"sound",
"music",
"canvas"
],
"author": "Austin Michaud",
"license": "MIT",
"files": [
"dist/bundle.cjs.js"
],
"homepage": "https://github.com/foobar404/Wave.js",
"repository": {
"type": "git",
"url": "https://github.com/foobar404/Wave.js.git"
},
"bugs": {
"url": "https://github.com/foobar404/Wave.js/issues"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@rollup/plugin-babel": "^5.0.4",
"rollup-plugin-terser": "^6.1.0"
},
"dependencies": {
"watch": "^1.0.2"
}
}