@netacea/akamai 6.4.2 → 6.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +75 -24
package/package.json
CHANGED
|
@@ -1,25 +1,76 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "@netacea/akamai",
|
|
3
|
+
"version": "6.4.3",
|
|
4
|
+
"description": "Netacea Akamai CDN Integration",
|
|
5
|
+
"author": "Netacea <integrations@netacea.com> (https://netacea.com)",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"test": "npm run test:unit && npm run test:mocha:no-clean",
|
|
10
|
+
"test:mocha": "NODE_OPTIONS='--import tsx' npx nyc -r=lcov -r=html -r=text mocha --timeout 60000 './tests/*.test.ts'",
|
|
11
|
+
"test:mocha:no-clean": "NODE_OPTIONS='--import tsx' npx nyc --no-clean -r=lcov -r=html -r=text mocha --timeout 60000 './tests/*.test.ts'",
|
|
12
|
+
"test:unit": "NODE_OPTIONS='--import tsx' npx nyc -r=lcov -r=html -r=text tape './unit_tests/*.test.ts'",
|
|
13
|
+
"lint": "npx eslint . --ext ts && tsc --noEmit",
|
|
14
|
+
"lint:fix": "npx eslint . --ext ts --fix",
|
|
15
|
+
"rollup": "npx rollup -c rollup.config.mjs && npx rollup -c rollup-types.config.mjs",
|
|
16
|
+
"build": "npx tsc --project tsconfig.build.json && npm run rollup",
|
|
17
|
+
"prepublishOnly": "npm run build",
|
|
18
|
+
"postpack": "npx netacea-bundler postpack",
|
|
19
|
+
"prepack": "npx netacea-bundler prepack"
|
|
20
|
+
},
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public"
|
|
23
|
+
},
|
|
24
|
+
"license": "UNLICENSED",
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@netacea/netaceaintegrationbase": "^2.3.3",
|
|
27
|
+
"buffer": "^6.0.3",
|
|
28
|
+
"uuid": "^11.1.0"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"dist"
|
|
32
|
+
],
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@netacea/akamai-test-runner": "^1.3.3",
|
|
35
|
+
"@netacea/bundler": "^1.3.3",
|
|
36
|
+
"@netacea/netaceaintegrationtestrunner": "^1.11.3",
|
|
37
|
+
"@netacea/test-runner-scenarios": "^1.3.3",
|
|
38
|
+
"@netacea/test-runner-transforms": "^1.3.3",
|
|
39
|
+
"@netacea/test-runner-types": "^1.3.3",
|
|
40
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
41
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
42
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
43
|
+
"@rollup/plugin-replace": "^5.0.5",
|
|
44
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
45
|
+
"@types/akamai-edgeworkers": "1.1.15",
|
|
46
|
+
"@types/aws4": "^1.11.0",
|
|
47
|
+
"@types/chai": "^4.3.5",
|
|
48
|
+
"@types/crypto-js": "^4.0.2",
|
|
49
|
+
"@types/mocha": "^10.0.1",
|
|
50
|
+
"@types/node": "^18.15.3",
|
|
51
|
+
"@types/node-fetch": "^2.5.7",
|
|
52
|
+
"@types/proxyquire": "^1.3.28",
|
|
53
|
+
"@types/sinon": "^9.0.8",
|
|
54
|
+
"@types/tape": "^4.13.0",
|
|
55
|
+
"aws4": "^1.11.0",
|
|
56
|
+
"chai": "^4.3.7",
|
|
57
|
+
"fetch": "^1.1.0",
|
|
58
|
+
"form-data": "^4.0.0",
|
|
59
|
+
"http-status-codes": "^2.2.0",
|
|
60
|
+
"jose": "^4.15.9",
|
|
61
|
+
"json2csv": "^5.0.7",
|
|
62
|
+
"mocha": "^10.2.0",
|
|
63
|
+
"node-fetch": "^2.6.1",
|
|
64
|
+
"nyc": "^15.1.0",
|
|
65
|
+
"proxyquire": "^2.1.3",
|
|
66
|
+
"rollup": "^4.13.2",
|
|
67
|
+
"rollup-plugin-dts": "^6.1.0",
|
|
68
|
+
"rollup-plugin-node-externals": "^7.1.1",
|
|
69
|
+
"sinon": "^9.1.0",
|
|
70
|
+
"tape": "^5.0.1",
|
|
71
|
+
"ts-node": "^10.9.2",
|
|
72
|
+
"tslib": "^2.0.3",
|
|
73
|
+
"typescript": "^5.4.3"
|
|
74
|
+
},
|
|
75
|
+
"gitHead": "2d320edfa3f798983f0bad68acf650d39dfeff07"
|
|
76
|
+
}
|