-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 859 Bytes
/
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
{
"name": "jsfs",
"version": "4.2.0",
"description": "deduplicating filesystem with a REST interface",
"main": "server.js",
"files": [
"server.js",
"config.ex",
"jlog.js",
"lib"
],
"directories": {
"lib": "./lib",
"tools": "./tools"
},
"repository": {
"type": "git",
"url": "https://github.com/jjg/jsfs.git"
},
"homepage": "https://github.com/jjg/jsfs",
"keywords": [
"filesystem",
"deduplicate",
"http",
"rest"
],
"author": {
"name": "Jason Gullickson"
},
"contributors": [
{
"name": "Marc Brakken"
}
],
"license": "GPL-3.0",
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec"
},
"dependencies": {
"through": "^2.3.8"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^9.1.3",
"mock-fs": "^4.0.0-beta.1"
}
}