-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
76 lines (76 loc) · 2.13 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
{
"name": "akamai-edgeworkers-cli",
"version": "1.9.0",
"description": "A tool that makes it easier to manage Akamai EdgeWorkers code bundles and EdgeKV databases. Call the EdgeWorkers and EdgeKV API from the command line.",
"repository": "https://github.com/akamai/cli-edgeworkers",
"scripts": {
"build": "npm run build-ts",
"clean": "rm -rf node_modules",
"build-ts": "tsc",
"postinstall": "node scripts/postinstall.js",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint; npm run test:run",
"test:run": "jest"
},
"engines": {
"node": ">=20.0.0"
},
"main": "index.js",
"bin": {
"edgeworkers": "./akamai-edgeworkers",
"edgekv": "./akamai-edgekv"
},
"dependencies": {
"akamai-edgegrid": "^3.1.4",
"chrono-node": "^2.7.0",
"cli-spinner": "0.2.10",
"commander": "^9.4.1",
"console.table": "0.10.0",
"crypto-js": "^4.1.1",
"from-seconds": "^1.0.2",
"glob": "^8.0.3",
"ini": "^3.0.1",
"inquirer": "7.3.3",
"is-valid-domain": "^0.1.5",
"jwt-decode": "^3.1.2",
"readline-sync": "^1.4.10",
"sha256-file": "^1.0.0",
"table-layout": "^4.1.1",
"tar": "^4.4.18",
"tar-stream": "^2.1.4",
"untildify": "3.0.3"
},
"pre-commit": [
"build",
"test:run",
"lint"
],
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@types/cli-spinner": "^0.2.1",
"@types/crypto-js": "^4.1.1",
"@types/glob": "^8.0.0",
"@types/inquirer": "^9.0.2",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.14.138",
"@types/node": "^20.14.8",
"@types/readline-sync": "^1.4.4",
"@types/request": "^2.48.3",
"@types/sha256-file": "^1.0.1",
"@types/tar": "^6.1.3",
"@types/tar-stream": "^2.2.2",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"babel-jest": "^28.1.3",
"dotenv": "^16.0.1",
"eslint": "^8.20.0",
"jest": "^28.1.3",
"pre-commit": "^1.2.2",
"ts-jest": "^28.0.7",
"typescript": "^4.3"
},
"license": "Apache-2.0"
}