-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 955 Bytes
/
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
{
"name": "macos-ocr.js",
"version": "0.0.5",
"description": "macOS ocr js api",
"keywords": [
"macOS",
"OCR"
],
"bin": {
"ocr": "./bin/macos-ocr.js",
"macos-ocr": "./bin/macos-ocr.js"
},
"files": [
"src/index.js",
"src/macos-ocr/macos-ocr",
"index.js"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/snapre/macos-ocr.js.git"
},
"scripts": {
"test": "nyc --reporter=lcov --reporter=text mocha",
"lint": "eslint . --fix",
"contributor": "git-contributor"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"author": "snapre <[email protected]>",
"license": "MIT",
"dependencies": {
"commander": "^9.4.1"
},
"devDependencies": {
"eslint": "*",
"eslint-config-egg": "^12.1.0",
"eslint-plugin-mocha": "^4.11.0",
"git-contributor": "1",
"husky": "*",
"mocha": "*",
"nyc": "*"
}
}