-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.7 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
{
"name": "felix",
"version": "0.4.1",
"description": "Automatically rotate IAM keys used by third-party services.",
"main": "handler.js",
"dependencies": {
"@cimpresscloud/metafig": "^0.2.7",
"aws-sdk": "^2.519.0",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"devDependencies": {
"depcheck": "^1.4.0",
"eslint": "^7.25.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"istanbul": "^0.4.0",
"mocha": "^8.3.2",
"proxyquire": "^2.1.3",
"readline-sync": "^1.4.10",
"sepia": "^2.0.2",
"serverless": "^2.39.0",
"serverless-plugin-common-excludes": "^3.0.1",
"should": "^13.2.3",
"sinon": "^10.0.0",
"ssm-params": "^0.1.0"
},
"scripts": {
"local": "sls invoke local -f rotate",
"remote": "sls invoke -f rotate -l",
"deploy": "sls deploy",
"configure": "node ./configure.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"depcheck": "depcheck --ignores serverless-plugin* && (npm outdated || true) && (npm audit || true)",
"climate": "docker run -it --rm -e CODECLIMATE_CODE=\"$PWD\" -v \"$PWD\":/code -v /var/run/docker.sock:/var/run/docker.sock -v /tmp/cc:/tmp/cc codeclimate/codeclimate analyze",
"test": "NODE_ENV=test VCR_MODE=playback istanbul cover --dir coverage _mocha -- \"test/**/*.test.js\" && istanbul check-coverage --statements 65",
"preflight": "npm run lint && npm run depcheck && npm test"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:Cimpress-MCP/felix.git"
},
"author": "Norm MacLennan <[email protected]>",
"license": "Apache-2.0"
}