forked from scaleway/serverless-scaleway-functions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.02 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "serverless-scaleway-functions",
"version": "0.4.10",
"description": "Provider plugin for the Serverless Framework v1.x which adds support for Scaleway Functions.",
"main": "index.js",
"author": "scaleway.com",
"license": "MIT",
"repository": {
"git": "https://github.com/scaleway/serverless-scaleway-functions"
},
"scripts": {
"clean-up": "node tests/teardown.js",
"test:containers": "jest tests/containers/containers.test.js",
"test:containers-private": "jest tests/containers/containers_private_registry.test.js",
"test:deploy": "jest tests/deploy",
"test:domains": "jest tests/domain",
"test:functions": "jest tests/functions",
"test:multi-region": "jest tests/multi-region",
"test:provider": "jest tests/provider",
"test:runtimes": "jest tests/runtimes",
"test:shared": "jest tests/shared",
"test:triggers": "jest tests/triggers",
"coverage": "jest --coverage",
"lint": "eslint . --cache"
},
"homepage": "https://github.com/scaleway/serverless-scaleway-functions",
"keywords": [
"serverless",
"serverless framework",
"serverless applications",
"serverless modules",
"scaleway functions",
"scaleway",
"iot",
"internet of things",
"serverless.com"
],
"jest": {
"testEnvironment": "node",
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.js$",
"useStderr": true,
"setupFiles": [
"<rootDir>/tests/setup-tests.js"
],
"testPathIgnorePatterns": [
"tests/utils",
"tests/setup-tests.js",
"tests/teardown.js"
],
"verbose": true
},
"dependencies": {
"@serverless/utils": "^6.13.1",
"argon2": "^0.30.3",
"axios": "^1.4.0",
"bluebird": "^3.7.2",
"dockerode": "^3.3.5",
"js-yaml": "^4.1.0",
"tar-fs": "^2.1.1"
},
"devDependencies": {
"@jest/globals": "^29.6.1",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"fs-extra": "^11.1.1",
"jest": "^29.6.1",
"rewire": "^6.0.0"
}
}