-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.39 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
{
"name": "mwaa",
"version": "0.1.0-alpha.1",
"description": "Mocked version of Web Audio API",
"keywords": [
"audio",
"audio-mock",
"audio-library",
"web-audio",
"web-audio-api",
"web-audio-api-mock",
"web-audio-library",
"web-audio-mock",
"testing",
"test",
"mock",
"mock-audio",
"sound",
"dsp",
"typescript",
"mwaa"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/satelllte/mwaa.git"
},
"bugs": {
"url": "https://github.com/satelllte/mwaa/issues"
},
"homepage": "https://github.com/satelllte/mwaa#readme",
"author": "@satelllte (https://github.com/satelllte)",
"maintainers": [
"@satelllte (https://github.com/satelllte)"
],
"files": [
"dist/*",
"src/*"
],
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
"module": "dist/index.js",
"sideEffects": false,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.57.0",
"@vitest/coverage-c8": "0.29.8",
"eslint": "8.37.0",
"eslint-config-xo": "0.43.1",
"eslint-config-xo-typescript": "0.56.0",
"happy-dom": "8.9.0",
"typescript": "5.0.3",
"vite": "4.2.1",
"vitest": "0.29.8"
},
"scripts": {
"build": "vite build && tsc",
"test:lib": "vitest --coverage",
"test:lint": "eslint src"
}
}