-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
166 lines (166 loc) · 5.55 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "edge-functions",
"type": "module",
"version": "4.3.0",
"description": "Tool to launch and build JavaScript/Frameworks. This tool automates polyfills for Edge Computing and assists in creating Workers, notably for the Azion platform.",
"main": "lib/main.js",
"bin": {
"azbundler": "lib/main.js",
"edge-functions": "lib/main.js",
"ef": "lib/main.js"
},
"scripts": {
"start": "node lib/main.js",
"task:aliases": "node tasks/sync-aliases.js",
"task:reports": "node tasks/process-reports-e2e.js",
"task:reports-nodejs-apis": "node tasks/process-reports-nodejs-apis.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"test": "jest --clearCache && jest lib/ ",
"test:watch": "jest lib/ --watch",
"test:coverage": "jest --clearCache && jest lib/ --coverage",
"format:check": "prettier . --check",
"task:docs": "jsdoc --configure jsdoc.json --verbose",
"e2e:start": "yarn submodule:update && tests/scripts/start-e2e-env.sh",
"e2e:stop": "tests/scripts/stop-e2e-env.sh",
"e2e:destroy": "tests/scripts/destroy-e2e-env.sh",
"test:e2e": "yarn e2e:start && jest --maxWorkers 1 tests/e2e/ --json --outputFile e2e_results.json && yarn e2e:stop; yarn task:reports",
"test:nodejs-apis": "yarn e2e:start && jest --maxWorkers 1 tests/nodejs-apis/ --json --outputFile nodejs_apis_results.json && yarn e2e:stop && yarn task:reports-nodejs-apis",
"prepare": "husky install",
"submodule:update": "git submodule update --init --recursive && git submodule foreach git pull origin main"
},
"author": "aziontech",
"contributors": [
{
"name": "Magnun A V F"
},
{
"name": "João Narciso",
"url": "https://jotanarciso.com"
}
],
"license": "MIT",
"dependencies": {
"@babel/generator": "^7.23.5",
"@babel/parser": "^7.23.5",
"@babel/plugin-proposal-optional-chaining-assign": "^7.25.9",
"@babel/traverse": "^7.23.5",
"@babel/types": "^7.23.5",
"@edge-runtime/node-utils": "^2.1.1",
"@edge-runtime/primitives": "^3.0.4",
"@fastly/http-compute-js": "^1.1.2",
"accepts": "^1.3.8",
"ajv": "^8.12.0",
"ajv-errors": "^3.0.0",
"ajv-keywords": "^5.1.0",
"assert": "^2.0.0",
"azion": "^1.10.0",
"babel-loader": "^9.2.1",
"bottleneck": "^2.19.5",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"chalk": "^5.3.0",
"chokidar": "^3.5.3",
"commander": "^10.0.1",
"console-browserify": "^1.2.0",
"cookie": "^0.6.0",
"crypto-browserify": "^3.12.0",
"deepmerge": "^4.3.1",
"dotenv": "^16.4.4",
"edge-runtime": "^2.4.5",
"esbuild": "^0.19.7",
"escape-string-regexp": "^5.0.0",
"events": "^3.3.0",
"fast-glob": "^3.3.1",
"form-data": "^4.0.0",
"fs-extra": "^11.2.0",
"https-browserify": "^1.0.0",
"inquirer": "^9.2.7",
"install": "^0.13.0",
"ip": "^2.0.1",
"lodash": "^4.17.21",
"lodash.merge": "^4.6.2",
"log-update": "^5.0.1",
"mathjs": "^14.0.1",
"mime-types": "^2.1.35",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"pcre-to-regexp": "^1.1.0",
"pkg-dir": "^7.0.0",
"prettier": "^3.3.2",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"readable-stream": "^4.4.2",
"semantic-release": "^21.0.7",
"semver": "^7.5.2",
"signale": "^1.4.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"string_decoder": "^1.3.0",
"timers-browserify": "^2.0.12",
"ts-loader": "^9.5.1",
"tty-browserify": "^0.0.1",
"typescript": "^5.5.3",
"url": "^0.11.1",
"util": "^0.12.5",
"vm-browserify": "^1.1.2",
"webpack": "^5.84.0",
"webpack-merge": "^5.9.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.1",
"@commitlint/config-conventional": "^18.4.0",
"@jest/globals": "^29.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^10.0.4",
"@semantic-release/release-notes-generator": "^11.0.4",
"@swc/core": "^1.3.96",
"@swc/jest": "^0.2.29",
"clean-jsdoc-theme": "^4.2.9",
"conventional-changelog-conventionalcommits": "^4.6.0",
"eslint": "^8.49.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-jsdoc": "^44.2.5",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-puppeteer": "^9.0.1",
"jsdoc": "^4.0.2",
"markdown-table": "^3.0.3",
"mock-fs": "^5.2.0",
"puppeteer": "^23.3.0",
"supertest": "^6.3.3",
"tmp": "^0.2.1"
},
"imports": {
"#root/*": "./",
"#lib/*": "./lib",
"#utils": "./lib/utils/index.js",
"#polyfills": "./lib/env/polyfills/index.js",
"#build": "./lib/build/dispatcher/index.js",
"#bundlers": "./lib/build/bundlers/index.js",
"#notations/*": "./lib/notations",
"#namespaces": "./lib/notations/namespaces.js",
"#typedef": "./lib/notations/typedef.js",
"#env": "./lib/env/index.js",
"#platform": "./lib/platform/index.js",
"#constants": "./lib/constants/index.js",
"#edge": "./lib/env/edgehooks/index.js",
"#commands": "./lib/commands/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aziontech/bundler.git"
},
"bugs": {
"url": "https://github.com/aziontech/bundler/issues"
},
"homepage": "https://github.com/aziontech/bundler#readme"
}