@netacea/vercel 0.4.2 → 0.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 +66 -25
package/package.json
CHANGED
|
@@ -1,26 +1,67 @@
|
|
|
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
|
-
"
|
|
26
|
-
}
|
|
2
|
+
"name": "@netacea/vercel",
|
|
3
|
+
"version": "0.4.3",
|
|
4
|
+
"description": "Netacea Vercel CDN Integration",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist/index.js",
|
|
12
|
+
"dist/index.d.ts"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"test": "npm run test:unit && npm run test:integration:no-clean",
|
|
16
|
+
"test:unit": "NODE_OPTIONS='--import tsx' npx nyc tape './tests/tape/*.test.ts'",
|
|
17
|
+
"test:integration": "NODE_OPTIONS='--import tsx' npx nyc --check-coverage mocha --timeout 60000 './tests/mocha/*.test.ts'",
|
|
18
|
+
"test:integration:no-clean": "NODE_OPTIONS='--import tsx' npx nyc --no-clean --check-coverage mocha --timeout 60000 './tests/mocha/*.test.ts'",
|
|
19
|
+
"lint": "npx eslint . --ext ts && tsc --noEmit",
|
|
20
|
+
"lint:fix": "npx eslint . --ext ts --fix",
|
|
21
|
+
"rollup": "npx rollup -c rollup.config.mjs && npx rollup -c rollup-types.config.mjs",
|
|
22
|
+
"prepublishOnly": "npm run build",
|
|
23
|
+
"build": "npm run rollup",
|
|
24
|
+
"postpack": "npx netacea-bundler postpack",
|
|
25
|
+
"prepack": "npx netacea-bundler prepack"
|
|
26
|
+
},
|
|
27
|
+
"author": "Netacea <npm@netacea.com> (https://netacea.com)",
|
|
28
|
+
"license": "ISC",
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"aws4fetch": "^1.0.20",
|
|
31
|
+
"jose": "^4.15.9",
|
|
32
|
+
"uuid": "^10.0.0"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@netacea/bundler": "^1.3.3",
|
|
36
|
+
"@netacea/netaceaintegrationbase": "^2.3.3",
|
|
37
|
+
"@netacea/netaceaintegrationtestrunner": "^1.11.3",
|
|
38
|
+
"@netacea/test-runner-scenarios": "^1.3.3",
|
|
39
|
+
"@netacea/test-runner-transforms": "^1.3.3",
|
|
40
|
+
"@netacea/test-runner-types": "^1.3.3",
|
|
41
|
+
"@rollup/plugin-commonjs": "^25.0.0",
|
|
42
|
+
"@rollup/plugin-json": "^6.0.0",
|
|
43
|
+
"@rollup/plugin-node-resolve": "^15.1.0",
|
|
44
|
+
"@rollup/plugin-replace": "^5.0.2",
|
|
45
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
46
|
+
"@rollup/plugin-typescript": "^11.1.1",
|
|
47
|
+
"@types/chai": "^4.3.5",
|
|
48
|
+
"@types/mocha": "^10.0.1",
|
|
49
|
+
"@types/node": "^20.9.1",
|
|
50
|
+
"@types/node-fetch": "^2.5.7",
|
|
51
|
+
"@types/proxyquire": "^1.3.28",
|
|
52
|
+
"@types/sinon": "^9.0.8",
|
|
53
|
+
"@types/tape": "^4.13.0",
|
|
54
|
+
"@types/uuid": "^10.0.0",
|
|
55
|
+
"chai": "^4.3.7",
|
|
56
|
+
"mocha": "^10.2.0",
|
|
57
|
+
"nyc": "^15.1.0",
|
|
58
|
+
"proxyquire": "^2.1.3",
|
|
59
|
+
"rollup": "^3.23.0",
|
|
60
|
+
"rollup-plugin-dts": "^6.0.2",
|
|
61
|
+
"rollup-plugin-node-externals": "^6.1.1",
|
|
62
|
+
"sinon": "^9.1.0",
|
|
63
|
+
"tape": "^5.0.1",
|
|
64
|
+
"typescript": "^5.2.2"
|
|
65
|
+
},
|
|
66
|
+
"gitHead": "2d320edfa3f798983f0bad68acf650d39dfeff07"
|
|
67
|
+
}
|