-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.69 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.69 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
{
"name": "@undecaf/vue-barcode-scanner",
"version": "0.9.3",
"description": "A barcode/QR code scanner for Vue 2",
"keywords": [
"vue",
"component",
"barcode",
"qrcode",
"zbar",
"webassembly",
"wasm"
],
"author": "F. Kasper <fkasper@modus-operandi.at>",
"license": "MIT",
"bugs": {
"url": "https://github.com/undecaf/vue-barcode-scanner/issues"
},
"homepage": "https://github.com/undecaf/vue-barcode-scanner#readme",
"module": "dist/main.js",
"type": "module",
"exports": {
"script": "./dist/index.js",
"default": "./dist/main.js"
},
"types": "./dist/main.d.ts",
"typings": "./dist/main.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/undecaf/vue-barcode-scanner"
},
"files": [
"dist/*.js",
"dist/*.d.ts"
],
"scripts": {
"prebuild": "rimraf dist/*",
"build": "rollup --config rollup.config.js",
"serve:e2e": "serve -l 8081 ./tests/e2e/",
"lint": "eslint '{src,tests}/**/*.{js,vue}'",
"lint:fix": "npm run lint -- --fix",
"npm:audit": "npm audit --omit=dev",
"test:e2e": "testcafe"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.1",
"@vue/cli": "^4.5.13",
"@vue/test-utils": "^1.2.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^6.2.2",
"postcss": "^7.0.39",
"rimraf": "^3.0.2",
"rollup": "^2.60.1",
"rollup-plugin-license": "^2.6.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^5.1.9",
"serve": "^13.0.2",
"testcafe": "^1.17.1",
"vue": "^2.7.9",
"vue-template-compiler": "^2.7.9"
}
}