-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
44 lines (44 loc) · 1.05 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
{
"name": "serverless-rust",
"version": "0.3.8",
"description": "Serverless framework plugin for Rustlang applications",
"main": "index.js",
"scripts": {
"lint": "npx prettier --check '**.js' '!coverage' ",
"test": "npx jest --collectCoverage",
"test:integration": "./tests/integration/test.sh",
"fmt": "npx prettier --write '**.js' '!coverage' "
},
"repository": {
"type": "git",
"url": "git+https://github.com/softprops/serverless-rust.git"
},
"keywords": [
"rustlang",
"aws",
"serverless",
"lambda"
],
"author": "softprops",
"license": "MIT",
"bugs": {
"url": "https://github.com/softprops/serverless-rust/issues"
},
"homepage": "https://github.com/softprops/serverless-rust#readme",
"dependencies": {
"fs-copy-file-sync": "^1.1.1",
"fs-extra": "^9.0.0",
"serverless": "^1.71.3"
},
"devDependencies": {
"adm-zip": "^0.5.9",
"jest": "^26.0.1",
"jest-circus": "^26.0.1",
"prettier": "^2.0.5"
},
"files": [
"index.js",
"package.json",
"README.md"
]
}