-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.78 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.78 KB
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
{
"name": "@packt/ssm-helper",
"version": "0.1.4",
"description": "Module and CLI tool to help handle SSM variables",
"main": "dist/index.js",
"bin": {
"ssmexport": "bin/export.bin.js"
},
"scripts": {
"build": "babel src -d dist",
"test": "npm run lint && npm run unit && npm run coverage",
"lint": "eslint ./src",
"coverage": "nyc npm run unit",
"unit": "./node_modules/.bin/mocha --require @babel/register --timeout 5s",
"prepublishOnly": "npm run test && npm run build",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git@github.com:PacktDev/ssm-helper.git"
},
"author": {
"name": "Packt Publishing Ltd",
"url": "https://www.packtpub.com/"
},
"contributors": [
{
"name": "Mike Elsmore",
"email": "mikee@packt.com"
}
],
"license": "Apache-2.0",
"homepage": "https://github.com/PacktDev/ssm-helper",
"devDependencies": {
"@babel/cli": "7.5.0",
"@babel/core": "7.5.0",
"@babel/node": "7.5.0",
"@babel/preset-env": "7.5.0",
"@babel/register": "7.4.4",
"aws-sdk-mock": "4.5.0",
"babel-loader": "8.0.6",
"babel-preset-env": "1.7.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chai-bytes": "0.1.2",
"eslint": "6.0.1",
"eslint-config-airbnb-base": "13.2.0",
"eslint-plugin-import": "2.18.0",
"mocha": "6.1.4",
"mocha-bamboo-reporter": "1.1.2",
"nyc": "14.1.1",
"sinon": "7.3.2",
"uuid": "3.3.2",
"webpack": "4.35.3",
"webpack-cli": "3.3.5"
},
"dependencies": {
"@packt/error-custom": "0.1.3",
"aws-sdk": "^2.484.0",
"commander": "2.20.0",
"debug": "4.1.1",
"joi": "14.3.1",
"node-cache": "4.2.0",
"snyk": "^1.192.4"
},
"snyk": true
}