forked from gruhn/vue-qrcode-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.7 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.7 KB
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
82
83
84
85
86
87
88
89
90
91
92
{
"name": "vue-qrcode-reader",
"description": "A set of Vue.js components for detecting and decoding QR codes.",
"version": "0.0.0-development",
"author": {
"name": "Niklas Gruhn",
"email": "niklas.gruhn@gmail.com"
},
"keywords": [
"vue",
"vuejs",
"vue-component",
"qrcode",
"qrcode-reader",
"qrcode-scanner",
"webrtc"
],
"license": "MIT",
"main": "dist/vue-qrcode-reader.common.js",
"unpkg": "dist/vue-qrcode-reader.browser.js",
"module": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack --config config/webpack.config.dev.js --progress --watch",
"build": "npm run build:browser && npm run build:common",
"build:browser": "cross-env NODE_ENV=production webpack --config config/webpack.config.browser.js --progress --hide-modules",
"build:common": "cross-env NODE_ENV=production webpack --config config/webpack.config.common.js --progress --hide-modules",
"lint": "eslint --ext .js,.vue src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gruhn/vue-qrcode-reader.git"
},
"bugs": {
"url": "https://github.com/gruhn/vue-qrcode-reader/issues"
},
"homepage": "https://gruhn.github.io/vue-qrcode-reader",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook"
}
},
"lint-staged": {
"*.{js,json,css,md,vue}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.0.0",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.16.0",
"commitizen": "^3.1.1",
"cross-env": "^3.1.3",
"cross-spawn": "^5.0.1",
"css-loader": "^0.26.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^3.12.1",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": "^6.2.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-html": "^1.6.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"husky": "^1.3.1",
"inject-loader": "^3.0.0",
"lint-staged": "^8.1.4",
"prettier": "1.16.4",
"semantic-release": "^15.9.9",
"vue-loader": "^10.0.0",
"vue-template-compiler": "^2.1.6",
"webpack": "^3.0.0",
"webpack-merge": "^1.1.2",
"worker-loader": "^2.0.0"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"callforth": "^0.3.0",
"jsqr": "^1.2.0",
"webrtc-adapter": "^6.2.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}