-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
58 lines (58 loc) · 1.71 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": "recorderx",
"version": "2.0.2",
"description": "Record and export audio in the browser via WebRTC api",
"author": "Jialiang T. ([email protected])",
"keywords": [
"audio",
"recording",
"WebRTC"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Zousdie/recorderx.git"
},
"scripts": {
"dev": "rollup -c build/rollup.dev.js --environment NODE_ENV:development,BABEL_MODULE:umd --watch",
"build:lib": "rollup -c build/rollup.config.js --environment NODE_ENV:production",
"build:umd": "rollup -c build/rollup.config.js --environment NODE_ENV:production,BABEL_MODULE:umd",
"build": "npm run build:lib && npm run build:umd",
"prebuild": "rm -rf dist & rm -rf lib & rm -rf esm",
"prepublishOnly": "npm run build",
"gh": "gh-pages -d dist"
},
"main": "lib/index.js",
"module": "esm/index.js",
"typings": "types/index.d.ts",
"files": [
"dist",
"esm",
"lib",
"types",
"demo"
],
"sideEffects": false,
"dependencies": {
"@babel/runtime": "^7.10.2"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"babel-eslint": "^10.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.21.2",
"gh-pages": "^2.2.0",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-eslint": "^5.1.0",
"rollup-plugin-fill-html": "^1.1.0",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-uglify": "^6.0.4"
}
}