forked from mohayonao/web-audio-engine
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
78 lines (78 loc) · 1.91 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
{
"name": "@descript/web-audio-js",
"description": "Pure JS implementation of the Web Audio API",
"version": "0.15.3-patched.6",
"authors": [
"Nao Yonamine <mohayonao@gmail.com>",
"Marcello Bastea-Forte <marcello@descript.com>"
],
"bugs": {
"url": "https://github.com/descriptinc/web-audio-js/issues"
},
"dependencies": {
"audio-type": "^1.0.2",
"biquad-coeffs-webaudio": "^1.2.0",
"fourier-transform": "^1.1.2",
"scijs-window-functions": "^2.0.2",
"wav-decoder": "^1.3.0",
"wav-encoder": "^1.3.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "6.8.0",
"eslint-config-prettier": "^6.10.1",
"husky": "^4.2.3",
"jest": "^25.2.7",
"npm-run-all": "4.1.5",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"rollup": "^2.3.3",
"rollup-plugin-typescript2": "^0.27.0",
"ts-jest": "^25.3.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"engines": {
"node": ">= 12.0.0"
},
"files": [
"package.json",
"README.md",
"src",
"build"
],
"homepage": "https://github.com/descriptinc/web-audio-js/",
"keywords": [
"web audio api"
],
"license": "MIT",
"main": "build/web-audio-js.js",
"module": "build/web-audio-js.esm.js",
"types": "build/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/descriptinc/web-audio-js.git"
},
"scripts": {
"build": "rollup -c",
"clean": "rm -rf lib coverage build",
"lint": "eslint src",
"test": "jest --watch",
"test-ci": "jest --coverage"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"preset": "ts-jest/presets/js-with-ts",
"roots": [
"src"
],
"testEnvironment": "node"
}
}