-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.32 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.32 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "roughlyfront",
"version": "0.0.1",
"description": "A roughly accurate emulator for AWS Lambda@Edge",
"keywords": [
"cloudfront",
"aws",
"lambda",
"edge",
"emulator",
"simulator",
"local",
"development"
],
"homepage": "https://github.com/SectorLabs/roughlyfront#readme",
"bugs": {
"url": "https://github.com/SectorLabs/roughlyfront/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SectorLabs/roughlyfront.git"
},
"license": "MIT",
"author": "Sector Labs <open-source@sectorlabs.ro>",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"roughlyfront": "./cli-main.js",
"roughlyfront-eval": "./cli-eval.js"
},
"files": [
"dist/*",
"cli-main.js",
"cli-eval.js"
],
"scripts": {
"build": "tsc",
"build:dev": "tsc --watch",
"fix": "npm run format && npm run lint:fix",
"format": "npm run format:code && npm run format:packagejson",
"format:code": "prettier --write './**/*.{js,ts,json}' --write",
"format:packagejson": "sort-package-json ./package.json",
"format:verify": "prettier --check './**/*.{js,ts,json}' --check",
"lint": "eslint --max-warnings=0 --ext .js --ext .ts --color .",
"lint:fix": "npm run lint -- --fix",
"verify": "npm run format:verify && npm run lint"
},
"dependencies": {
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"commander": "^9.4.1",
"consola": "^2.15.3",
"fb-watchman": "^2.0.2",
"find-up": "^5.0.0",
"headers-polyfill": "^4.0.3",
"outmatch": "^0.7.0",
"strip-ansi": "^6.0.1",
"toml": "^3.0.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.152",
"@types/fb-watchman": "^2.0.1",
"@types/node": "^18.19.121",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"eslint": "^8.57.0",
"prettier": "^3.6.2",
"sort-package-json": "3.3.0",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"registry": "https://nexus.sector.sh/repository/yarn-empg/"
}
}