-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
77 lines (77 loc) · 2.11 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
{
"name": "redux-sounds",
"type": "module",
"version": "4.0.0-beta.4",
"sideEffects": false,
"description": "Sound effect middleware for Redux.",
"main": "dist/redux-sounds.umd.cjs",
"module": "./dist/redux-sounds.js",
"exports": {
".": {
"import": "./dist/redux-sounds.js",
"require": "./dist/redux-sounds.umd.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"LICENSE.md",
"package.json",
"README.md",
"src"
],
"scripts": {
"lint": "eslint src",
"build:esm": "NODE_OPTIONS='--experimental-vm-modules' vite build --config vite.config.esm.js",
"build:umd": "NODE_OPTIONS='--experimental-vm-modules' vite build --config vite.config.umd.js",
"build": "concurrently 'yarn:build:*'",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest --collectCoverage",
"coveralls": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/joshwcomeau/redux-sounds.git"
},
"keywords": [
"redux",
"middleware",
"redux-middleware",
"sound",
"howler",
"audio",
"flux"
],
"author": "Joshua Comeau <[email protected]>",
"contributors": [
"Joshua Comeau <[email protected]>",
"George Kormaris <[email protected]>"
],
"packageManager": "[email protected]",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@rollup/plugin-swc": "^0.3.1",
"@swc/core": "^1.6.13",
"@swc/jest": "^0.2.36",
"concurrently": "^8.2.2",
"core-js": "^3.37.1",
"coveralls": "^3.1.1",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"howler": "^2.2.4",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^24.1.0",
"prettier": "^3.3.2",
"vite": "^5.3.3"
},
"peerDependencies": {
"howler": "^2.0.0"
}
}