-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.06 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.06 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
{
"name": "simple-barcode-scanner",
"version": "2.0.0",
"description": "Utility to read barcode from devices emulating a fast keyboard",
"unpkg": "./dist/BarcodeScanner.js",
"main": "./dist/index.js",
"module": "./dist/index.module.js",
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hadeeb/simple-barcode-scanner.git"
},
"keywords": [
"simple",
"barcode",
"scanner",
"barcode-scanner",
"simple-barcode-scanner"
],
"author": "Hadeeb Farhan <hadeebfarhan1@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hadeeb/simple-barcode-scanner/issues"
},
"homepage": "https://github.com/hadeeb/simple-barcode-scanner#readme",
"scripts": {
"prebuild": "yarn test",
"build": "microbundle",
"prepublishOnly": "yarn build",
"test": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"jest": "^26.6.3",
"microbundle": "^0.13.0",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
}
}