-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.79 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
60
61
62
63
64
65
{
"name": "@mneil/lambda-packager",
"version": "1.0.3",
"description": "Yet another lambda packager. Native tooling for python and node lambda packages (no docker)",
"main": "lib/index.js",
"scripts": {
"test": "npm-run-all test:*",
"test:unit": "ts-mocha test/unit/**/*.ts",
"test:integration": "ts-mocha test/integration/**/*.ts",
"build": "npm-run-all build:*",
"build:clean": "rimraf dist",
"build:compile": "tsc"
},
"bin": {
"lambda-packager": "bin/lambda-packager.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mneil/lambda-packager.git"
},
"author": "Michael Neil",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/mneil/lambda-packager/issues"
},
"homepage": "https://github.com/mneil/lambda-packager#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@trivago/prettier-plugin-sort-imports": "^2.0.4",
"@types/archiver": "^5.1.1",
"@types/chai": "^4.2.21",
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.12",
"@types/minimatch": "^3.0.5",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.10",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"mocha": "^9.1.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-mocha": "^8.0.0",
"typescript": "^4.4.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.30.0",
"@balena/dockerignore": "^1.0.2",
"archiver": "^5.3.0",
"commander": "^8.1.0",
"debug": "^4.3.2",
"fs-extra": "^10.0.0",
"ignore": "^5.1.8",
"minimatch": "^3.0.4"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"bracketSpacing": true
}
}