-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"name": "serverless-rust",
"version": "0.4.0",
"description": "Serverless framework plugin for Rustlang applications",
"main": "index.js",
"scripts": {
"lint": "npx prettier --check '**.js' '!coverage' ",
"test": "npx jest --collectCoverage",
"test:integration": "npm i; ./tests/integration/test.sh",
"fmt": "npx prettier --write '**.js' '!coverage' "
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ryan-Gordon/serverless-rust-plugin.git"
},
"keywords": [
"rustlang",
"aws",
"serverless",
"lambda"
],
"author": "Ryan-Gordon",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ryan-Gordon/serverless-rust-plugin/issues"
},
"homepage": "https://github.com/Ryan-Gordon/serverless-rust-plugin#readme",
"dependencies": {
"fs-copy-file-sync": "^1.1.1",
"fs-extra": "^9.0.0",
"serverless": "^3.38.0",
"adm-zip": "^0.5.9"
},
"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"
]
}