-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
84 lines (84 loc) · 2.36 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "node-hp-scan-to",
"version": "1.5.1",
"description": "Scan document to Computer for HP All-in-One Printers",
"keywords": [
"Officejet",
"scan",
"cli",
"computer"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"node-hp-scan-to": "dist/index.js"
},
"scripts": {
"prestart": "node getCommitId.js",
"start": "ts-node src/index.ts",
"start-debug": "ts-node src/index.ts -D",
"prebuild": "node getCommitId.js",
"build": "tsc -p .",
"build:docker": "tsc -p .",
"built-start": "tsc -p . && node --trace-warnings ./dist/index.js",
"start-dev": "nodemon",
"prepublishOnly": "tsc -p ./ --outDir dist/",
"prettier": "prettier --write \"src/**/*.ts\"",
"test": "npx mocha --require ts-node/register ./test/**/*.test.ts",
"test-ci": "npx nyc --reporter=lcov mocha -r ts-node/register ./test/**/*.test.ts && codecov"
},
"files": [
"dist",
"src",
"tsconfig.json",
"nodemon.json",
"README.md"
],
"engines": {
"node": ">=18.0.0"
},
"author": {
"email": "[email protected]",
"name": "Emmanuel Counasse",
"url": "https://github.com/manuc66"
},
"homepage": "https://github.com/manuc66/node-hp-scan-to",
"bugs": "https://github.com/manuc66/node-hp-scan-to/issues",
"repository": {
"type": "git",
"url": "https://github.com/manuc66/node-hp-scan-to.git"
},
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.3",
"@types/chai-string": "^1.4.2",
"@types/config": "^3.3.0",
"@types/dateformat": "^5.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^22.1.0",
"@types/xml2js": "^0.4.11",
"chai": "^4.3.6",
"chai-string": "^1.5.0",
"codecov": "^3.8.3",
"eslint": "^9.1.0",
"mocha": "^11.0.1",
"nodemon": "^3.0.1",
"nyc": "^17.0.0",
"prettier": "^3.0.0",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"yarn": "^1.22.19"
},
"dependencies": {
"axios": "^1.7.4",
"bonjour-service": "^1.3.0",
"commander": "^13.0.0",
"config": "^3.3.8",
"dateformat": "^4.6.3",
"jspdf": "^2.5.1",
"xml2js": "^0.6.0"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}