forked from dynamsoft-dbr/node-javascript-barcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.19 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.19 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
{
"name": "dynamsoft-node-barcode",
"version": "7.3.0-v0",
"description": "Dynamsoft Barcode Reader JS is a recognition SDK which enables you to embed barcode reading functionality in your web, desktop, and mobile applications. With a few lines of JavaScript code, you can develop a robust application to scan a linear barcode, QR Code, DaraMatrix, PDF417, and Aztec Code.",
"files": [
"/dist/dbr.js",
"/dist/dbr.mjs",
"/dist/dbr.browser.mjs",
"/dist/dbr-*.worker.js",
"/dist/dbr-*.wasm.js",
"/dist/dbr-*.wasm",
"/dist/dbr.d.ts",
"/dist/dbr.reference.d.ts",
"/dist/dbr.scanner.html"
],
"homepage": "https://www.dynamsoft.com/Products/barcode-recognition-javascript.aspx",
"main": "dist/dbr.js",
"module": "dist/dbr.mjs",
"browser": "dist/dbr.browser.mjs",
"types": "dist/dbr.d.ts",
"author": {
"name": "Dynamsoft",
"url": "https://www.dynamsoft.com"
},
"license": "SEE LICENSE IN LICENSE.txt",
"repository": {
"type": "git",
"url": "https://github.com/dynamsoft-dbr/node-javascript-barcode"
},
"maintainers": [
{
"name": "Dynamsoft",
"email": "support@dynamsoft.com"
}
],
"keywords": [
"Node.js barcode",
"JavaScript barcode",
"Web barcode",
"barcode",
"PDF417",
"QRCode",
"Aztec Code",
"WebAssembly",
"SDK",
"Linear barcode",
"1D barcode"
],
"scripts": {
"build": "webpack --config webpack.config.js",
"build:node": "webpack --config webpack.config.node.js",
"build:doc": "typedoc --out \"doc/api reference\" --mode file --excludeExternals --excludeNotExported --excludePrivate --excludeProtected --name \"Dynamsoft BarcodeReader SDK for Javascript\"",
"test": "node test"
},
"devDependencies": {
"@types/node": "^12.12.14",
"declaration-bundler-webpack-plugin": "^1.0.3",
"fork-ts-checker-webpack-plugin": "^1.5.0",
"fs-extra": "^8.1.0",
"localforage": "^1.7.3",
"ts-declaration-webpack-plugin": "^1.2.0",
"ts-loader": "^6.0.4",
"typedoc": "^0.15.0",
"typescript": "^3.6.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-merge": "^4.2.2"
},
"dependencies": {}
}