-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.43 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
{
"name": "@saeon/mnemosyne",
"version": "1.2.0",
"description": "A very simple HTTP-range supporting file server. Stream your file in, and stream your file out! Named after the goddess of memory in Greek mythology.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/SAEON/mnemosyne.git"
},
"files": [
"bin/",
"src/",
"client/",
"README.md",
"package.json",
"LICENSE"
],
"scripts": {
"test": "mocha",
"?": "Refer to ./chompfile.toml"
},
"bin": {
"mnemosyne": "./bin/mnemosyne.js"
},
"preferGlobal": true,
"author": "zd.smith@saeon.nrf.ac.za",
"license": "MIT",
"bugs": {
"url": "https://github.com/SAEON/mnemosyne/issues"
},
"homepage": "https://github.com/SAEON/mnemosyne#readme",
"keywords": [
"http-server",
"range",
"cloud",
"optimized",
"geotiff",
"zarr"
],
"devDependencies": {
"chai": "^4.3.10",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"node-mocks-http": "^1.13.0",
"prettier": "^3.0.3",
"sinon": "^17.0.0"
},
"dependencies": {
"@hapi/accept": "^6.0.3",
"mime": "^3.0.0",
"mkdirp": "^3.0.1",
"mocha": "^10.2.0",
"nanoid": "^5.0.2",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=18.16"
},
"contributors": [
{
"name": "Zach Smith",
"email": "zachsmith.sa@gmail.com"
}
]
}