forked from Be-FaaS/BeFaaS-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.16 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
{
"name": "@befaas/lib",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "prettier-standard --lint && jest",
"format": "prettier-standard --format"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier-standard --lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Be-FaaS/BeFaaS-lib.git"
},
"publishConfig": {
"access": "public"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Be-FaaS/BeFaaS-lib/issues"
},
"homepage": "https://github.com/Be-FaaS/BeFaaS-lib#readme",
"dependencies": {
"@koa/router": "^12.0.0",
"@bittrance/azure-function-express": "^2.1.0",
"expressjs-openwhisk": "^1.1.1",
"ioredis": "^5.3.2",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.9",
"qs": "^6.11.1",
"serverless-http": "3.2.0"
},
"devDependencies": {
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.1",
"prettier-standard": "^16.4.1",
"standard": "^17.0.0",
"supertest": "^6.3.3"
}
}