forked from MatrixFrog/react-audio-recorder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.5 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
{
"name": "react-audio-recorder",
"version": "3.0.1",
"description": "Audio Recorder",
"main": "dist/AudioRecorder.min.js",
"types": "dist/AudioRecorder.d.ts",
"module": "dist/AudioRecorder.js",
"jsnext:main": "dist/AudioRecorder.js",
"license": "MIT",
"author": "Dan Rouse",
"homepage": "https://github.com/danrouse/react-audio-recorder",
"repository": {
"type": "git",
"url": "https://github.com/danrouse/react-audio-recorder.git"
},
"bugs": {
"url": "https://github.com/danrouse/react-audio-recorder/issues"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"bundle": "webpack -p",
"test": "jest",
"prepublish": "npm run build && npm run bundle"
},
"keywords": [
"react",
"react-component",
"audio",
"web-audio",
"recording",
"microphone"
],
"peerDependencies": {
"react": "^16.3.2"
},
"devDependencies": {
"@types/react": "^16.4.18",
"jest": "^23.6.0",
"react-dom": "^16.3.2",
"ts-jest": "^23.10.4",
"typescript": "^3.1.3",
"typings-for-css-modules-loader": "^1.7.0",
"webpack": "^4.8.1",
"webpack-cli": "^3.1.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/test/.*|\\.(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
]
},
"dependencies": {
"@material-ui/core": "^4.7.1",
"@material-ui/icons": "^4.5.1",
"axios": "^0.19.0",
"postcss-css-variables": "^0.14.0"
}
}