This repository has been archived by the owner on May 5, 2024. It is now read-only.
forked from mthenw/serverless-go-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.69 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
{
"name": "serverless-golang-plugin",
"version": "3.0.0",
"description": "Serverless Framework plugin that compiles Go functions on the fly",
"main": "index.js",
"scripts": {
"lint": "eslint ./*.js",
"test": "nyc _mocha index.test.js",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"postversion": "npm run test && git push && git push --tags && npm publish && npx release -P"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mthenw/serverless-go-plugin.git"
},
"keywords": [
"serverless",
"serverless framework",
"serverless plugin",
"amazon web services",
"awslambda",
"golang",
"go"
],
"author": "Maciej Winnicki <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mthenw/serverless-go-plugin/issues"
},
"homepage": "https://github.com/mthenw/serverless-go-plugin#readme",
"dependencies": {
"adm-zip": "^0.5.10",
"chalk": "^4.1.2",
"lodash.merge": "^4.6.2",
"p-map": "^4.0.0",
"pretty-hrtime": "^1.0.3"
},
"devDependencies": {
"chai": "^4.3.10",
"codecov": "^3.8.3",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0"
},
"eslintConfig": {
"extends": [
"plugin:prettier/recommended"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error"
},
"parserOptions": {
"ecmaVersion": 2018
},
"env": {
"es6": true,
"node": true
}
}
}