-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 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
{
"name": "cloudflare-edge-proxy",
"version": "1.0.0-alpha.0",
"description":
"Cloudflare proxy, providing a/b/n testing, canary releasing, gatekeeping, and SEO a/b/n testing. Implemented as a Cloudflare worker script.",
"main": "dist/index.js",
"scripts": {
"test": "jest --watch --verbose",
"build": "babel src -d dist --verbose"
},
"author": "Digital Optimization Group LLC",
"license": "MIT",
"keywords": [
"serverless",
"proxy",
"a/b testing",
"seo a/b testing",
"gatekeeping",
"canary release",
"traffic shaping",
"cloudflare"
],
"repository": {
"type": "git",
"url":
"https://github.com/DigitalOptimizationGroup/cloudflare-edge-proxy.git"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-polyfill": "^6.26.0",
"jest": "^23.6.0",
"regenerator-runtime": "^0.13.1",
"service-worker-mock": "^1.10.2"
},
"dependencies": {
"bignumber.js": "^8.0.1",
"cookie": "^0.3.1",
"jsonwebtoken": "^8.4.0",
"querystring": "^0.2.0",
"sha1": "^1.1.1",
"uuid": "^3.3.2"
},
"jest": {
"setupFiles": ["<rootDir>/jest.init.js"]
}
}