-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.81 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.81 KB
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
{
"name": "bfast-database-core",
"version": "4.0.0-alpha.19-t.0",
"main": "./index.js",
"types": "./index.d.ts",
"license": "MIT",
"author": {
"name": "FahamuTech",
"email": "mama27j@gmail.com",
"url": "https://fahamutech.com"
},
"nyc": {
"include": "dist",
"exclude": "**/*.spec.js"
},
"maintainers": [
"joshuamshana(https://github.com/joshuamshana)",
"fahamutech(https://github.com/fahamutech)"
],
"scripts": {
"build": "npx rimraf dist && npm run build:esm && cp src/bfast.json dist/ && cp package.json dist/ && cp .npmrc dist/",
"build:esm": "tsc -p tsconfig.json --declaration",
"test": "npm run build && mocha --require ts-node/register src/**/*.spec.ts",
"test:coverage": "npm run build && nyc mocha --require ts-node/register src/**/*.spec.ts",
"chapisha:beta": "npm run build && cd dist && npm publish --tag beta",
"chapisha": "npm run build && cd dist && npm publish"
},
"dependencies": {
"base64url": "~3.0.1",
"bcryptjs": "~2.4.3",
"bfast": "~6.0.1",
"bfast-database-tree": "~1.1.4",
"formidable": "~2.0.1",
"http-status-codes": "~2.2.0",
"ipfs-http-client": "~56.0.3",
"it-to-stream": "~1.0.0",
"jsonschema": "~1.4.1",
"jsonwebtoken": "~8.5.1",
"mime": "~3.0.0",
"minio": "~7.0.32",
"moment": "~2.29.4",
"mongodb": "~4.11.0",
"uuid": "~9.0.0",
"web3.storage": "~4.4.0"
},
"devDependencies": {
"@types/chai": "~4.3.4",
"@types/minio": "~7.0.14",
"@types/mocha": "~10.0.0",
"@types/node": "~18.11.9",
"axios": "~1.1.3",
"rimraf": "~3.0.2",
"bfast-function": "~2.0.0-alpha.9",
"chai": "~4.3.7",
"engine.io-client": "~6.2.3",
"form-data": "~4.0.0",
"mocha": "~10.1.0",
"nyc": "~15.1.0",
"ts-node": "~10.9.1",
"typescript": "~4.8.4"
}
}