-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.45 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
{
"name": "@lumigo/lumigo-log-shipper",
"version": "0.0.0-development",
"description": "Lumigo Node.js Log Shipper",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"checks": "./scripts/checks.sh",
"ts": "tsc",
"lint:fix": "eslint ./src --ext .ts --ignore-pattern node_modules/ --fix",
"build": "tsc",
"lint-staged": "lint-staged",
"prettier:fix": "prettier --write \"./**/*.ts\"",
"prettier:check": "prettier --check \"./src/**/*.ts\"",
"semantic-release": "semantic-release"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.13",
"@types/node": "^14.10.2",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"aws-sdk": "^2.533.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-jest": "^24.0.1",
"jest": "^26.4.2",
"lint-staged": "^7.3.0",
"nock": "^10.0.2",
"prettier": "^2.8.1",
"semantic-release": "^17.1.2",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2",
"zlib": "^1.0.5"
},
"prettier": {
"useTabs": true,
"tabWidth": 4,
"printWidth": 90
},
"lint-staged": {
"*.js": [
"prettier"
]
},
"dependencies": {
"buffer": "^5.4.3"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/lumigo-io/lumigo-node-log-shipper.git"
},
"publishConfig": {
"access": "restricted"
}
}