-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"name": "@millihq/sammy",
"version": "3.0.0",
"main": "dist/index.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/milliHQ/sammy.git"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "jest",
"lint:prettier": "prettier --check .",
"fix:prettier": "prettier --write ."
},
"dependencies": {
"aws-sdk": "^2.1055.0",
"change-case": "^4.1.2",
"get-port": "^5.1.1",
"node-fetch": "^2.6.7",
"tmp": "^0.2.1",
"unzipper": "^0.10.11",
"yaml": "^1.10.0"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/archiver": "^5.3.1",
"@types/aws-lambda": "^8.10.71",
"@types/jest": "^27.0.1",
"@types/node": "^12.0.0",
"@types/node-fetch": "^2.5.8",
"@types/rimraf": "^3.0.2",
"@types/tmp": "^0.2.0",
"@types/unzipper": "^0.10.3",
"archiver": "^5.3.1",
"jest": "^27.1.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
},
"files": [
"dist/**/*"
],
"engines": {
"node": ">=14.0.0"
}
}