-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.25 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": "@mattduffy/albums",
"version": "0.1.0",
"description": "Create albums from an archive of files, usually images.",
"author": "[email protected]",
"license": "ISC",
"main": "index.js",
"type": "module",
"homepage": "https://github.com/mattduffy/albums#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mattduffy/albums.git"
},
"bugs": {
"url": "https://github.com/mattduffy/albums/issues"
},
"exports": {
".": "./src/index.js",
"./Albums": "./src/Albums.js",
"./test": "./test/*.js",
"./package.json": "./package.json"
},
"scripts": {
"testx": "DEBUG=* DOTENV_CONFIG_DEBUG=true DOTENV_CONFIG_PATH=test/test.env DOTENV_CONFIG_PROCESS_ENV=testEnv node --test --require dotenv/config test/test.js",
"test": "DEBUG=* node --test test/test.js"
},
"devDependencies": {
"dotenv": "16.4.5",
"eslint": "8.26.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"ioredis": "5.3.2",
"mongodb": "6.5.0",
"redis": "4.6.13",
"redis-om": "0.3.6"
},
"dependencies": {
"@mattduffy/exiftool": "file:../exiftool",
"@mattduffy/unpacker": "file:../unpacker",
"debug": "4.3.4",
"magickwand.js": "1.1.0"
},
"keywords": []
}