-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
82 lines (82 loc) · 2.25 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
82
{
"name": "@undecaf/barcode-detector-polyfill",
"version": "0.9.21",
"description": "A WebAssembly polyfill for the Barcode Detection API",
"keywords": [
"polyfill",
"barcode",
"qrcode",
"zbar",
"wasm",
"webassembly"
],
"author": "F. Kasper <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/undecaf/barcode-detector-polyfill/issues"
},
"homepage": "https://github.com/undecaf/barcode-detector-polyfill#readme",
"module": "dist/main.js",
"type": "module",
"exports": {
".": {
"script": "./dist/index.js",
"default": "./dist/main.js"
},
"./zbar-wasm": {
"require": "./dist/zbar-wasm.meta.cjs",
"default": "./dist/zbar-wasm.meta.js"
}
},
"types": "./dist/main.d.ts",
"typings": "./dist/main.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/undecaf/barcode-detector-polyfill"
},
"files": [
"dist/*.js",
"dist/*.cjs",
"dist/*.d.ts",
"dist/*.js.map"
],
"scripts": {
"prebuild": "rimraf dist/*",
"build": "rollup --config rollup.config.js",
"test:unit": "karma start ./karma.conf.cjs",
"test:unit:debug": "karma start --browsers Chromium --no-single-run ./karma.conf.cjs",
"npm:audit": "npm audit --omit=dev",
"npm:pack": "npm pack"
},
"dependencies": {
"@undecaf/zbar-wasm": "^0.9.15"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.2",
"@rollup/plugin-replace": "^3.0.1",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/offscreencanvas": "^2019.6.4",
"chai": "^4.3.4",
"karma": "^6.4.1",
"karma-browserstack-launcher": "^1.6.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-rollup-preprocessor": "^7.0.7",
"karma-sourcemap-loader": "^0.3.8",
"karma-spec-reporter": "0.0.33",
"mocha": "^8.4.0",
"rimraf": "^3.0.2",
"rollup": "^2.62.0",
"rollup-plugin-license": "^2.6.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^2.0.4",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
}
}