-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "edge-lambda",
"description": "A collection of lambda@edge for various usage.",
"repository": "[email protected]:fthouraud/edge-lambda.git",
"author": "Fabien Thouraud <[email protected]>",
"license": "MIT",
"workspaces": [
"lambdas/**/*",
"cli/**/*"
],
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@babel/register": "^7.13.14",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@types/archiver": "^5.1.0",
"@types/sinon": "^9.0.11",
"@types/yargs": "^16.0.1",
"archiver": "^5.3.0",
"ava": "^3.15.0",
"aws-sdk": "^2.880.0",
"babel-plugin-shebang": "^1.0.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-ava": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"esm": "^3.2.25",
"husky": "^5.2.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"sinon": "^10.0.0",
"yargs": "^16.2.0"
},
"engines": {
"node": "14.x"
},
"scripts": {
"test": "ava -v",
"test:coverage": "nyc ava -v",
"compile:lambdas": "babel --out-dir distribution --copy-files lambdas",
"compile:cli": "babel --out-dir distribution/cli --copy-files cli"
}
}