-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.41 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
{
"name": "fabriko",
"version": "2.0.0",
"description": "Management of user permissions and Mapbox accounts for geographic information systems",
"main": "src/index.ts",
"scripts": {
"lint": "eslint '**/*.ts' --cache --fix",
"test": "jest",
"build": "rm -rf dist && esbuild src/index.ts --outfile=dist/index.js --bundle --platform=node --target=node16 --minify --sourcemap && cp dist-reuse/* dist/",
"dev": "pnpm test && pnpm build && act -j benchmark-fabriko-warmup --secret-file .secrets"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devgioele/fabriko.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "devgioele",
"license": "MIT",
"dependencies": {
"@actions/core": "1.10.1",
"@aws-sdk/client-s3": "3.433.0",
"@azure/identity": "3.3.2",
"@devgioele/winged": "7.0.10",
"@types/lodash": "4.14.200",
"axios": "1.1.2",
"lodash": "4.17.21",
"yaml": "2.3.3",
"zod": "3.22.4"
},
"devDependencies": {
"@swc/core": "1.3.51",
"@swc/jest": "0.2.23",
"@types/jest": "29.5.6",
"@types/node": "17.0.45",
"esbuild": "0.15.10",
"eslint": "8.52.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-github": "4.10.1",
"eslint-plugin-jest": "27.4.3",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.7.0",
"js-yaml": "4.1.0",
"prettier": "2.8.8",
"typescript": "4.9.5"
}
}