-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·81 lines (81 loc) · 2.35 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
78
79
80
81
{
"name": "@algoz098/audio-recorder",
"version": "0.1.1",
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
"all": "yarn build && yarn publish && yarn build:gh-pages",
"build:gh-pages": "vue-cli-service build",
"publish": "npm publish --access public",
"build": "npm run build:umd & npm run build:es & npm run build:unpkg",
"lint": "vue-cli-service lint",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/components/AudioRecorder.esm.js",
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/components/AudioRecorder.umd.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/components/AudioRecorder.min.js"
},
"main": "dist/components/AudioRecorder.umd.js",
"module": "dist/components/AudioRecorder.esm.js",
"browser": {
"./sfc": "src/components/AudioRecorder.vue"
},
"unpkg": "dist/components/AudioRecorder.min.js",
"dependencies": {
"@quasar/extras": "^1.0.0",
"core-js": "^3.6.4",
"quasar": "^1.0.0",
"vue": "^2.6.11"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.3.0",
"@vue/cli-plugin-eslint": "~4.3.0",
"@vue/cli-service": "~4.3.0",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-imports": "1.5.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"rollup": "^1.17.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-vue": "^5.0.1",
"vue-cli-plugin-quasar": "~2.0.2",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/recommended",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"description": "A Lightweight Vue Component for Audio recording",
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/algoz098/vue-audio-recorder.git"
},
"keywords": [
"vue",
"audio",
"audio-recorder",
"component"
],
"author": "Artur Sena",
"license": "ISC",
"bugs": {
"url": "https://github.com/algoz098/vue-audio-recorder/issues"
},
"homepage": "https://github.com/algoz098/vue-audio-recorder#readme"
}