-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1023 Bytes
/
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
{
"name": "@brightleaf/launchpad",
"description": "CLI tool and libary to deply code to AWS",
"version": "0.7.0",
"private": false,
"scripts": {
"test": "isom test",
"lint": "isom lint",
"watch": "isom watch",
"postversion": "npm publish --access=public",
"postpublish": "git push origin --all --follow-tags"
},
"bin": {
"launchpad": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brightleaf/launchpad.git"
},
"homepage": "https://github.com/brightleaf/launchpad",
"license": "MIT",
"devDependencies": {
"@kev_nz/eslint-config": "^5.2.1",
"@kev_nz/publisher": "^4.0.1",
"aws-sdk-mock": "^5.1.0",
"eslint": "^7.0.0",
"isom": "^1.0.0",
"jest": "^26.0.1"
},
"dependencies": {
"@auth0/s3": "^1.0.0",
"@kev_nz/async-tools": "^1.2.3",
"@zeit/ncc": "^0.22.2",
"archiver": "^4.0.1",
"aws-sdk": "^2.682.0",
"commander": "^5.1.0",
"fs-extra": "^9.0.1",
"js-yaml": "^3.13.1"
}
}