-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 3.52 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@meltwater/jackalambda",
"version": "2.0.7",
"description": "Mythical lambda creature",
"main": "index.js",
"module": "lib/index.js",
"sideEffects": false,
"keywords": [
"node"
],
"homepage": "https://github.com/meltwater/jackalambda",
"bugs": "https://github.com/meltwater/jackalambda/issues",
"repository": "meltwater/jackalambda",
"license": "MIT",
"author": {
"name": "Team Jackalope",
"email": "[email protected]"
},
"files": [
"yarn.lock",
"index.js",
"lib",
"handlers",
"data",
"docs"
],
"scripts": {
"docs": "documentation build ./index.js -f md > ./docs/README.md",
"postdocs": "npm-run-all format",
"test": "nyc ava",
"pretest": "npm-run-all lint",
"posttest": "serverless package",
"test:update": "ava --update-snapshots",
"test:watch": "ava --watch",
"test:inspect": "node --inspect node_modules/ava/profile",
"test:inspect:watch": "nodemon --inspect node_modules/ava/profile",
"lint": "eslint --ignore-path .gitignore --ext .js .",
"postversion": "git push && git push --tags",
"deploy": "serverless deploy --aws-s3-accelerate",
"release:staging": ".github/workflows/deploy-version.sh --environment staging --version",
"release:staging-auto-version": ".github/workflows/deploy-version.sh --environment staging --version package.json",
"release:production": ".github/workflows/deploy-version.sh --environment production --version",
"release:production-auto-version": ".github/workflows/deploy-version.sh --environment production --version package.json",
"example": "node examples",
"example:watch": "nodemon --exec node examples",
"example:inspect": "node --inspect examples",
"example:inspect:watch": "nodemon --exec node --inspect examples",
"offline": "serverless offline",
"offline:watch": "nodemon node_modules/.bin/serverless offline",
"pretty": "prettier --ignore-path .gitignore --write '**/*.(js|json|graphql|md)'",
"format": "npm-run-all --serial pretty format:*",
"format:ts": "eslint --ignore-path .gitignore --fix --ext .js .",
"report": "nyc report",
"patch": "standard-version --release-as patch --skip.changelog && git push && git push --tags",
"preminor": "npm-run-all --serial test build",
"minor": "standard-version --release-as minor --skip.changelog && git push && git push --tags",
"premajor": "npm-run-all --serial test build",
"major": "standard-version --release-as major --skip.changelog && git push && git push --tags"
},
"engines": {
"node": ">=12.13.0"
},
"resolutions": {
"aws-sdk": "2.771.0"
},
"dependencies": {
"@meltwater/aws-configuration-fetcher": "1.1.5",
"@meltwater/mlabs-logger": "^6.0.0",
"argument-contracts": "^1.1.0",
"aws-xray-sdk": "3.3.8",
"cache-manager": "^3.4.0",
"cookie": "^0.4.1",
"esm": "^3.2.25",
"uuid": "^8.3.0"
},
"devDependencies": {
"@meltwater/examplr": "^5.0.0",
"ava": "^3.3.0",
"aws-sdk": "2.1231.0",
"del-cli": "^3.0.0",
"documentation": "^13.0.2",
"eslint": "^7.4.0",
"eslint-config-standard": "^16.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsdoc": "^30.6.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"nodemon": "^2.0.1",
"npm-run-all": "^4.1.2",
"nyc": "^15.0.0",
"prettier": "^2.0.2",
"serverless": "^2.1.1",
"serverless-offline": "^6.1.2",
"standard-version": "^9.5.0",
"testdouble": "^3.16.1"
}
}