-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1007 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1007 Bytes
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
{
"name": "scandit-cordova-datacapture-barcode",
"version": "8.1.2",
"description": "Scandit Data Capture SDK for Cordova",
"license": "Apache-2.0",
"private": false,
"main": "dist/index.js",
"types": "dist/dts/index.d.ts",
"keywords": [
"ecosystem:cordova",
"cordova-ios",
"cordova-android"
],
"scripts": {
"build": "rollup -c rollup.config.js --bundleConfigAsCjs",
"test": "npm run lint",
"lint": "eslint ./www/ts",
"coverage": "jest ./www/test --coverage --maxWorkers=12",
"clear-jest-cache": "jest --clearCache || true",
"clean": "npm run clear-jest-cache && rimraf dist coverage",
"clean-all": "npm run clean && rimraf node_modules"
},
"dependencies": {
"scandit-cordova-datacapture-core": "8.1.2",
"scandit-datacapture-frameworks-barcode": "8.1.2",
"scandit-datacapture-frameworks-core": "8.1.2"
},
"cordova": {
"id": "scandit-cordova-datacapture-barcode",
"platforms": [
"ios",
"android"
]
}
}