-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
58 lines (58 loc) · 1.3 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
{
"name": "react-audio-recorder",
"version": "2.1.0",
"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",
"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"
]
}
}