-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.76 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
{
"name": "@meltwater/aws-configuration-fetcher",
"version": "1.1.6",
"description": "A simple system for fetching configuration from both SSM and Secrets Manager in AWS",
"main": "index.js",
"module": "lib/index.js",
"sideEffects": false,
"keywords": [
"node"
],
"mpkg": [
"umd/*"
],
"homepage": "https://github.com/meltwater/aws-configuration-fetcher",
"bugs": "https://github.com/meltwater/aws-configuration-fetcher/issues",
"repository": "meltwater/aws-configuration-fetcher",
"license": "MIT",
"author": {
"name": "Team Jackalope",
"email": "[email protected]"
},
"files": [
"yarn.lock",
"index.js",
"lib",
"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 .",
"preversion": "npm-run-all docs test",
"postversion": "git push && git push --tags",
"deploy": "serverless deploy --aws-s3-accelerate",
"release:staging": ".drone/deploy.sh staging",
"release:production": ".drone/deploy.sh production",
"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"
},
"engines": {
"node": ">=12.13.0"
},
"resolutions": {
"aws-sdk": "2.771.0"
},
"dependencies": {
"argument-contracts": "^1.1.0",
"aws-xray-sdk-core": "3.2.0",
"cache-manager": "^3.4.0",
"esm": "^3.2.25"
},
"devDependencies": {
"@meltwater/examplr": "^5.0.0",
"ava": "^3.3.0",
"aws-sdk": "2.771.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-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",
"testdouble": "^3.16.1"
}
}