-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.51 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
{
"name": "aws-manage-sg",
"version": "0.0.0-development",
"description": "Manages the creation/deletion/updating of a user's current ip address in multiple AWS security groups",
"main": "index.js",
"scripts": {
"lint:markdown": "markdownlint src/**/*.md *.md",
"lint:source": "eslint .",
"lint": "npm run lint:source && npm run lint:markdown",
"semantic-release": "semantic-release",
"commit": "git-cz",
"travis-deploy-once": "travis-deploy-once"
},
"bin": {
"aws-manage-sg": "./bin/aws-manage-sg.js"
},
"preferGlobal": true,
"keywords": [
"aws",
"security",
"group"
],
"author": "Niall McCullagh",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.605.0",
"debug": "^4.1.1",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"timeout-as-promise": "^1.0.0",
"yargs": "^13.3.0"
},
"devDependencies": {
"commitizen": "^4.0.3 ",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-security": "^1.4.0",
"husky": "^4.0.10",
"markdownlint-cli": "^0.21.0",
"semantic-release": "^16.0.2",
"travis-deploy-once": "^5.0.11"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/niallmccullagh/aws-manage-sg-cli.git"
}
}