This repository has been archived by the owner on Apr 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
69 lines (69 loc) · 1.96 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
{
"name": "vue-quaggajs",
"description": "A Vue.js component, accessing the device camera and allowing users to read barcodes, within the browser",
"main": "dist/vue-quagga.js",
"module": "src/index.js",
"version": "1.0.12",
"author": "Shintaro Tanaka <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "cross-env webpack-dev-server --open --hot --config webpack.dev.js",
"build": "cross-env webpack --progress --hide-modules --config webpack.prod.js",
"lint": "eslint src/**/*.{js,vue} --fix",
"prepare": "npm run build"
},
"keywords": [
"quagga",
"vue",
"barcode-reader",
"barcode-scanner"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sin-tanaka/vue-quagga.git"
},
"bugs": {
"url": "https://github.com/sin-tanaka/vue-quagga/issues"
},
"peerDependencies": {
"vue": "^2.6.11"
},
"dependencies": {
"quagga": "^0.12.1",
"webrtc-adapter": "^7.2.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"babel-loader": "^8.0.5",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"eslint": "^5.13.0",
"eslint-config-prettier": "^4.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.1",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.16.4",
"uglifyjs-webpack-plugin": "^2.1.1",
"vue-loader": "^15.6.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
}
}