-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.82 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
{
"name": "react-barcode-detection",
"version": "0.0.15",
"description": "Easy-to-use React component for detecting barcodes",
"main": "index.js",
"type": "module",
"scripts": {
"test": "./node_modules/mocha/bin/mocha.js --require test/setup.js -- test/*.test.js",
"test:debug": "./node_modules/mocha/bin/mocha.js --require test/setup.js --no-timeouts --inspect-brk -- test/*.test.js",
"test:watch": "./node_modules/mocha/bin/mocha.js --require test/setup.js --parallel --watch -- test/*.test.js",
"coverage": "./node_modules/c8/bin/c8.js ./node_modules/mocha/bin/mocha.js --require test/setup.js --parallel -- test/*.test.js",
"build:wasm": "cd src/wasm && docker build -t emscripten . && docker run --rm -v $(pwd):/src -u $(id -u):$(id -g) emscripten ./build.sh && cd ../.."
},
"repository": {
"type": "git",
"url": "git+https://github.com/chung-leong/react-barcode-detection.git"
},
"keywords": [
"barcode",
"qr",
"qr-code",
"aztec",
"data-matrix",
"pdf417",
"upc",
"ean"
],
"files": [
"src/*.js",
"src/wasm/package.json",
"src/wasm/*.js",
"src/wasm/*.wasm",
"index.js"
],
"author": "Chung Leong",
"license": "MIT",
"bugs": {
"url": "https://github.com/chung-leong/react-barcode-detection/issues"
},
"homepage": "https://github.com/chung-leong/react-barcode-detection#readme",
"dependencies": {
"jsqr": "^1.4.0",
"react-media-capture": "^0.0.12"
},
"peer-dependencies": {
"react-seq": "^0.9.0"
},
"devDependencies": {
"@andreekeberg/imagedata": "^1.0.2",
"abort-controller": "^3.0.0",
"c8": "^7.13.0",
"chai": "^4.3.7",
"event-target-shim": "^6.0.2",
"mocha": "^10.2.0",
"mocha-skip-if": "^1.0.3",
"react": "^18.2.0",
"react-seq": "^0.9.0",
"react-test-renderer": "^18.2.0"
}
}