-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.53 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
{
"name": "tozan",
"version": "7.0.1",
"description": "Index filesystem by creating metadata database",
"homepage": "https://github.com/paazmaya/tozan",
"exports": {
".": "./index.js",
"./lib/*.js": "./lib/*.js"
},
"type": "module",
"bin": "bin/tozan.js",
"types": "types/index.d.ts",
"scripts": {
"lint": "eslint *.js bin lib",
"typings": "tsc",
"test": "c8 --exclude tests --exclude types tape tests/*_test.js tests/lib/*_test.js",
"coverage": "c8 --exclude tests --exclude types report --reporter=text-lcov > coverage.lcov && codecov"
},
"author": {
"name": "Juga Paazmaya",
"email": "paazmaya@yahoo.com",
"url": "https://paazmaya.fi"
},
"engines": {
"node": ">=18.12.0",
"npm": ">=8.19.2"
},
"files": [
"bin",
"lib",
"index.js",
"package.json",
"npm-shrinkwrap.json",
"LICENSE",
"types",
"README.md"
],
"keywords": [
"files",
"hash",
"image",
"picture",
"organize"
],
"repository": {
"type": "git",
"url": "git@github.com:paazmaya/tozan.git"
},
"bugs": {
"url": "https://github.com/paazmaya/tozan/issues"
},
"license": "MIT",
"dependencies": {
"array-uniq": "3.0.0",
"better-sqlite3": "9.6.0",
"optionator": "0.9.4",
"progress": "2.0.3"
},
"devDependencies": {
"@types/node": "20.14.10",
"c8": "9.1.0",
"codecov": "3.8.3",
"eslint": "8.57.0",
"eslint-config-paazmaya": "9.0.1",
"eslint-plugin-n": "17.12.0",
"tape": "5.8.1",
"typescript": "^5.1.5"
}
}