-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 3.87 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
{
"name": "akj-tech-preview",
"version": "1.5.6",
"description": "Tools and Code for the Programmable CDN Tech preview",
"repository": {
"type": "git",
"url": "git+https://github.com/akamai/akj-tech-preview.git"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/cli-progress": "^3.11.5",
"@types/inquirer": "^9.0.7",
"@types/inquirer-autocomplete-prompt": "^3.0.3",
"@types/jest": "^29.5.11",
"@types/json-pointer": "^1.0.34",
"@types/nunjucks": "^3.2.6",
"@types/std-mocks": "^1.0.4",
"@types/stream-buffers": "^3.0.7",
"@types/tar": "^6.1.11",
"@types/through2": "^2.0.41",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"copyfiles": "^2.4.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-jsdoc": "^48.0.4",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.2.4",
"prettier-plugin-jsdoc": "^1.3.0",
"rimraf": "^5.0.5",
"stream-buffers": "^3.0.2",
"stream-to-string": "^1.2.1",
"through2": "^4.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@commander-js/extra-typings": "^11.1.0",
"@nodecg/json-schema-defaults": "^1.0.4",
"@types/node": "^20.11.0",
"@types/semver": "^7.5.8",
"address": "^2.0.2",
"ajv-draft-04": "^1.0.0",
"akamai-edgegrid": "^3.4.4",
"better-ajv-errors": "^1.2.0",
"chalk": "^4.1.2",
"class-validator": "^0.14.1",
"cli-progress": "^3.12.0",
"commander": "^11.1.0",
"fuzzy": "^0.1.3",
"get-current-line": "^7.4.0",
"glob": "^10.3.10",
"inquirer": "^8.2.6",
"inquirer-autocomplete-prompt": "^2.0.1",
"json-pointer": "^0.6.2",
"nunjucks": "^3.2.4",
"semver": "^7.6.0",
"std-mocks": "^2.0.0",
"tar": "^6.2.1",
"untildify": "^5.0.0"
},
"scripts": {
"clean": "rimraf ./out/ ./package-lock.json ./node_modules/",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest --unhandled-rejections=strict",
"format": "prettier --config .prettierrc '{src,examples,tests}/**/*.{js,ts,json}' --write",
"lint": "eslint . --ext .ts --resolve-plugins-relative-to ./",
"lint-fix": "eslint . --ext .ts --fix --resolve-plugins-relative-to ./",
"build": "npx tsc && copyfiles -u 1 src/templates/*.njk out/src/ && cp package.json out/package.json && copyfiles -u 1 schema/v*.json out/schema/",
"generate-api": "ts-node src/api/api-generator.ts",
"save-api": "ts-node src/api/api-generator.ts --format --outputFile ./src/types.ts",
"akj": "ts-node src/akj.ts",
"prepare": "npx tsc && copyfiles -u 1 src/templates/*.njk out/src/ && cp package.json out/package.json && copyfiles -u 1 schema/v*.json out/schema/",
"prod-build": "npm install rimraf && npm run clean && npm install && npx tsc -p tsconfig.prod.json && copyfiles -u 1 src/templates/*.njk out/src/ && cp package.json out/package.json && copyfiles -u 1 schema/v*.json out/schema/"
},
"main": "out/src/lib.js",
"types": "out/src/lib.d.ts",
"bin": {
"akj": "out/src/akj.js"
},
"files": [
"/out/package.json",
"/out/src/*.js",
"/out/src/*.d.ts",
"/out/src/akj/*.js",
"/out/src/akj/*.d.ts",
"/out/src/utils/*.js",
"/out/src/utils/*.d.ts",
"/out/src/papi/*.js",
"/out/src/papi/*.d.ts",
"/out/src/api/edgeworkers.js",
"/out/src/api/edgeworkers.d.ts",
"/out/src/api/papi.js",
"/out/src/api/papi.d.ts",
"/out/src/api/property-manager.js",
"/out/src/api/property-manager.d.ts",
"/out/src/templates/config.njk",
"/out/src/templates/scf.njk",
"/out/src/templates/edgeauth.njk",
"/out/src/templates/ew-bundle.njk",
"/out/src/templates/ew-js.njk",
"/out/schema/v*.json"
],
"type": "commonjs",
"license": "SEE LICENSE IN LICENSE.md"
}