-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.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
{
"name": "equalizer.js",
"version": "2.2.1",
"description": "An audio analysis tool for real-time and choreographed visualizations.",
"main": "build/equalizer.js",
"module": "src/equalizer.js",
"types": "types.d.ts",
"scripts": {
"build": "node ./utils/build.js",
"lint": "eslint . --fix",
"types": "tsc --outFile types.d.ts"
},
"files": [
"package.json",
"src",
"build",
"readme.md",
"index.html",
"types.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jonobr1/equalizer.js.git"
},
"keywords": [
"audio",
"visual",
"visualization",
"html5",
"tool",
"equalizer",
"fft",
"sound"
],
"author": {
"name": "jonobr1",
"url": "http://jonobr1.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jonobr1/equalizer/issues"
},
"homepage": "https://jonobr1.com/equalizer.js/",
"devDependencies": {
"esbuild": "^0.12.14",
"eslint": "^8.1.0",
"typescript": "^4.4.4"
}
}