-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
60 lines (60 loc) · 1.3 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": "barcode4nodejs",
"version": "10.0.4",
"description": "Node.js bindings to Dynamsoft Barcode Reader C/C++ SDK.",
"keywords": [
"barcode",
"linear barcode",
"QR code",
"DataMatrix",
"Aztec",
"PDF417",
"MaxiCode",
"DotCode",
"1D barcode",
"2D barcode",
"code39",
"code128",
"EAN",
"UPC",
"GS1",
"Barcode SDK",
"Barcode Reader"
],
"author": "yushulx",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yushulx/nodejs-barcode"
},
"homepage": "https://github.com/yushulx/nodejs-barcode#readme",
"main": "index.js",
"files": [
"platforms/",
"scripts/",
"src/",
"index.js",
"index.d.ts",
"binding.gyp",
"package.json",
"README.md",
"LICENSE",
"nativeLoader.js"
],
"types": "index.d.ts",
"typings": "",
"scripts": {
"preinstall": "npm run check-global-deps",
"install": "npm run configure && npm run build",
"configure": "node-gyp configure",
"build": "node-gyp configure build --jobs max",
"postinstall": "node ./scripts/postinstall.js",
"clean": "node-gyp clean",
"check-global-deps": "node ./scripts/checkGlobalDeps.js"
},
"gypfile": true,
"devDependencies": {
"@types/node": "^20.14.2",
"node-gyp": "^10.1.0"
}
}