-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.71 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
{
"name": "lab-2025",
"version": "0.0.1",
"description": "Adobe CDN based experimentation",
"keywords": [],
"type": "module",
"engines": {
"node": ">=20",
"npm": ">=10"
},
"scripts": {
"checkConfig": "source .env && echo $EDGEWORKER_ID && echo $EDGEWORKER_VERSION",
"lint": "eslint --fix . --ignore-pattern '**/dist/**'",
"format": "prettier --ignore-path .prettierignore '**/*.js' --write",
"prebuild": "node increment-version.js && rimraf dist ",
"build": "NODE_ENV=production rollup -c rollup.config.mjs --bundleConfigAsCjs",
"postbuild": "cd dist/ && tar -czvf odd.tgz main.js bundle.json",
"edgeworker:auth": "akamai edgeworkers auth --expiry 480",
"edgeworker:deploy": "source .env && akamai ew upload $EDGEWORKER_ID --bundle ./dist/odd.tgz",
"edgeworker:activate": "source .env && akamai ew av $EDGEWORKER_ID staging $EDGEWORKER_VERSION",
"edgeworker:status": "source .env && akamai edgeworkers status $EDGEWORKER_ID --versionId $EDGEWORKER_VERSION"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-regenerator": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.19.0",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"core-js": "^3.40.0",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"rollup": "^4.30.1",
"rollup-plugin-cpy": "^2.0.1"
}
}