forked from 2fps/recorder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.04 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": "js-audio-recorder",
"version": "1.0.6",
"description": "js audio recorder plugin",
"main": "./index.js",
"scripts": {
"dev": "npm run start",
"start": "webpack-dev-server --open --watch --inline --mode=development --config webpack.dev.js",
"demo": "webpack --mode=production --config webpack.dev.js",
"https": "webpack-dev-server --https --open --watch --inline --mode=development --host --config webpack.dev.js",
"build": "webpack --mode=production",
"test": "jest",
"gitbook": "gitbook serve ./site",
"gitbook:build": "gitbook build ./site",
"gitbook:install": "gitbook install ./site"
},
"keywords": [
"recorder",
"javascript",
"js",
"html5",
"audio",
"webaudio",
"pcm",
"wav",
"plugin",
"录音"
],
"files": [
"index.js",
"src",
"dist"
],
"author": "2fps",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/2fps/recorder.git"
},
"bugs": {
"url": "https://github.com/2fps/recorder/issues"
},
"homepage": "https://github.com/2fps/recorder",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.7.4",
"@types/jest": "^24.0.11",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.5",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"file-loader": "^4.3.0",
"gitbook-cli": "^2.3.2",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.7.1",
"jest-html-reporters": "^1.1.6",
"lamejs": "^1.2.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.1",
"style-loader": "^1.0.0",
"ts-jest": "^24.0.2",
"ts-loader": "^5.3.3",
"typescript": "^3.4.3",
"url-loader": "^2.3.0",
"vconsole": "^3.3.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {}
}