-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
69 lines (69 loc) · 1.68 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-go-plugin",
"version": "2.4.1",
"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.9",
"chalk": "^2.4.2",
"lodash.merge": "^4.6.2",
"p-map": "^3.0.0",
"pretty-hrtime": "^1.0.3"
},
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.6.1",
"mocha": "^10.2.0",
"nyc": "^15.0.0",
"proxyquire": "^2.1.1",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5"
},
"eslintConfig": {
"extends": [
"plugin:prettier/recommended"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error"
},
"parserOptions": {
"ecmaVersion": 2018
},
"env": {
"es6": true,
"node": true
}
}
}