-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 1.09 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
{
"name": "scanner-to-buffer",
"version": "3.0.0",
"description": "crossplatform scanning images",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint --fix \"src/**/*.ts\"",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run lint && git add -A src",
"postversion": "git push && git push --tags",
"test": "npm run build && ts-node ./test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mateuszkitlas/scanner-to-buffer.git"
},
"keywords": [
"scanner",
"image",
"tiff",
"WIA",
"docker",
"SANE"
],
"author": "[email protected]",
"license": "ISC",
"files": [
"lib/**/*"
],
"devDependencies": {
"@types/node": "^18.15.5",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}