-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.23 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
{
"name": "@borderless/worker-aws-xray",
"version": "1.1.1",
"description": "AWS X-Ray client for Cloudflare Workers using `fetch`",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"prettier": "prettier --write",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --quiet --fix",
"format": "npm run prettier -- \"{,src/**/}*.{js,jsx,ts,tsx,json,css,md,yml,yaml}\"",
"build": "rimraf dist && tsc",
"specs": "jest --coverage",
"test": "npm run -s lint && npm run -s build && npm run -s specs",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/BorderlessLabs/worker-aws-xray.git"
},
"keywords": [
"worker",
"fetch",
"aws",
"xray",
"distributed",
"tracing",
"error",
"cloudflare"
],
"author": {
"name": "Blake Embrey",
"email": "[email protected]",
"url": "http://blakeembrey.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/BorderlessLabs/worker-aws-xray/issues"
},
"homepage": "https://github.com/BorderlessLabs/worker-aws-xray",
"jest": {
"setupFiles": [
"<rootDir>/jest-setup.js"
],
"roots": [
"<rootDir>/src/"
],
"transform": {
"\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md,yml,yaml}": "npm run prettier"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@peculiar/webcrypto": "^1.1.4",
"@types/jest": "^26.0.16",
"@types/node": "^14.0.1",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"cross-fetch": "^3.0.6",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.3",
"jest": "^26.0.1",
"lint-staged": "^10.0.8",
"prettier": "^2.2.1",
"rimraf": "^3.0.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"dependencies": {
"aws4fetch": "^1.0.13"
}
}