-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 986 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 986 Bytes
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
{
"name": "bfast-tools",
"version": "2.0.1",
"description": "Local FaaS tools for bfast-functions",
"private": false,
"preferGlobal": true,
"bin": {
"bfast": "src/index.mjs",
"bfast-functions": "src/functions.cli.mjs"
},
"scripts": {
"test": "mocha \"test/**/*.test.mjs\"",
"publish:npm": "yarn publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fahamutech/bfast-tools.git"
},
"keywords": [
"bfast",
"functions",
"faas",
"local"
],
"author": "FahamuTech (fahamutechdevelopers@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fahamutech/bfast-tools/issues"
},
"homepage": "https://github.com/fahamutech/bfast-tools#readme",
"dependencies": {
"bfast-function": "~3.2.3",
"cli-spinner": "~0.2.10",
"commander": "~14.0.3",
"fs-extra": "^11.3.3",
"nodemon": "~3.1.14"
},
"devDependencies": {
"chai": "~6.2.2",
"mocha": "~11.7.5"
}
}