-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.31 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
{
"name": "ssm-session",
"version": "1.0.6",
"description": "Javascript library for starting an AWS SSM session compatible with Browser and NodeJS",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./build.sh",
"release": "standard-version --no-verify"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bertrandmartel/aws-ssm-session.git"
},
"keywords": [
"aws",
"ssm",
"shell",
"terminal"
],
"author": "Bertrand Martel",
"license": "MIT",
"bugs": {
"url": "https://github.com/bertrandmartel/aws-ssm-session/issues"
},
"sideEffects": false,
"module": "dist/esm-node/index.js",
"browser": {
"./dist/esm-node/index.js": "./dist/esm-browser/index.js"
},
"files": [
"LICENSE.md",
"README.md",
"dist",
"ssm.js"
],
"homepage": "https://github.com/bertrandmartel/aws-ssm-session#readme",
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@rollup/plugin-node-resolve": "^7.1.3",
"aws-sdk": "^2.879.0",
"babel-plugin-add-module-exports": "^1.0.4",
"prettier": "^2.2.1",
"rollup": "^2.44.0",
"rollup-plugin-terser": "^5.3.1",
"standard-version": "^7.1.0",
"ws": "^7.4.4"
}
}