-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.14 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": "xray-well",
"version": "0.2.0",
"description": "AWS X-Ray Well - An Unofficial SDK for Node.js",
"main": "./out/index.js",
"types": "./out/index.d.ts",
"author": "Felipe Lima <[email protected]>",
"license": "MIT",
"engines": {
"node": ">= 12.0"
},
"keywords": [
"aws",
"x-ray",
"xray",
"sdk",
"express",
"middleware"
],
"repository": "felipefdl/xray-well",
"scripts": {
"docs": "typedoc",
"prepublishOnly": "jest",
"prepare": "tsc",
"build": "tsc",
"test": "jest"
},
"devDependencies": {
"@types/jest": "27.4.1",
"@types/node": "17.0.21",
"@typescript-eslint/eslint-plugin": "5.13.0",
"@typescript-eslint/parser": "5.13.0",
"eslint": "8.10.0",
"eslint-config-prettier": "8.4.0",
"eslint-plugin-prettier": "4.0.0",
"express": "4.17.3",
"jest": "27.5.1",
"koa": "2.13.4",
"prettier": "2.5.1",
"supertest": "6.2.2",
"ts-jest": "27.1.3",
"typedoc": "0.22.12",
"typedoc-plugin-missing-exports": "0.22.6",
"typescript": "4.5.5"
},
"dependencies": {
"detect-browser": "^5.3.0",
"ms": "^2.1.3"
}
}