This repository has been archived by the owner on Jun 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
68 lines (68 loc) · 1.79 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
{
"name": "@dollarshaveclub/cloudworker",
"version": "0.1.2",
"description": "node.js runner for Cloudflare Workers",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"cloudworker": "./bin/cloudworker.js"
},
"scripts": {
"test": "jest --coverage",
"lint": "eslint . --fix",
"lint:ci": "eslint .",
"tsc-check": "tsc --noEmit --project .",
"tslint": "tslint --project tsconfig.json --config tslint.json 'index.d.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dollarshaveclub/cloudworker.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dollarshaveclub/cloudworker/issues"
},
"keywords": [
"cloudflare",
"service worker",
"workers",
"worker",
"cloudflare worker",
"cloudworker"
],
"homepage": "https://github.com/dollarshaveclub/cloudworker#readme",
"dependencies": {
"@dollarshaveclub/node-fetch": "^3.2.0",
"web-streams-polyfill": "^2.0.3",
"arraybuffer-equal": "^1.0.4",
"atob": "^2.1.2",
"btoa": "^1.2.1",
"commander": "^2.20.0",
"http-cache-semantics": "^4.0.3",
"lru-cache": "^5.1.1",
"moment": "^2.24.0",
"node-webcrypto-ossl": "^1.0.48"
},
"devDependencies": {
"@types/node": "^10.14.10",
"axios": "^0.19.0",
"eslint": "^5.16.0",
"eslint-config-dollarshaveclub": "^3.1.0",
"eslint-plugin-jest": "^21.27.2",
"jest": "^23.6.0",
"jest-fetch-mock": "^1.7.5",
"node-mocks-http": "^1.7.6",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.5.2"
},
"jest": {
"testEnvironment": "node",
"automock": false,
"setupTestFrameworkScriptFile": "./jest-setup-framework.js",
"testPathIgnorePatterns": [
"fixtures"
]
}
}