-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 863 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 863 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
36
37
38
39
40
41
42
{
"name": "jscanify",
"version": "1.4.2",
"description": "Open-source Javascript mobile document scanner.",
"main": "src/jscanify-node.js",
"exports": {
".": {
"default": "./src/jscanify-node.js"
},
"./client": {
"default": "./src/jscanify.js"
}
},
"directories": {
"doc": "docs"
},
"scripts": {
"test": "mocha --trace-uncaught"
},
"repository": {
"type": "git",
"url": "https://github.com/puffinsoft/jscanify.git"
},
"keywords": [
"js",
"scanner",
"document-scanner"
],
"author": "ColonelParrot",
"license": "MIT",
"bugs": {
"url": "https://github.com/puffinsoft/jscanify/issues"
},
"homepage": "https://colonelparrot.github.io/jscanify/",
"dependencies": {
"canvas": "^3.1.0",
"jsdom": "^26.0.0"
},
"devDependencies": {
"mocha": "^11.1.0"
}
}