-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.11 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
{
"name": "mantaray-file-manager",
"version": "1.0.0",
"description": "A file manager for uploading and managing files on Swarm using Mantaray.",
"main": "src/fileManager.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"start": "node index.js",
"lint": "eslint .",
"prepare": "npm run lint"
},
"keywords": [
"swarm",
"mantaray",
"file-manager",
"bee-js",
"javascript"
],
"author": "Nidish Ramakrishnan",
"license": "MIT",
"dependencies": {
"@ethersphere/bee-js": "^8.3.1",
"bee-js": "^1.0.2",
"mantaray-js": "^1.0.3"
},
"devDependencies": {
"@eslint/js": "^8.57.1",
"eslint": "^8.57.1",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"coverageDirectory": "./coverage",
"coverageReporters": [
"text",
"lcov",
"html"
],
"collectCoverageFrom": [
"src/**/*.js",
"!src/index.js"
]
},
"engines": {
"node": ">=14"
}
}