-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.56 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
{
"name": "winston-bigquery",
"version": "0.0.0-development",
"description": "winston transport for google's bigquery",
"main": "dist/index.js",
"author": "Pavel 'PK' Kaminsky <[email protected]> (http://www.pavel-kaminsky.com)",
"license": "ISC",
"engineStrict": true,
"engines": {
"node": ">= 10"
},
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --respawn src/examples/nested.ts",
"format": "prettier --write src/**/*.{json,ts}",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint src/**/*.ts --fix",
"lint:prettier": "prettier --config .prettierrc --write src/**/*.{ts,js,json}",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"precommit": "lint-staged",
"prepush": "npm run build",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"homepage": "https://github.com/kaminskypavel/winston-bigquery",
"dependencies": {
"@google-cloud/bigquery": "^5.0.0",
"dotenv": "^8.2.0",
"flat": "^5.0.0",
"lodash": "^4.17.15",
"moment": "^2.22.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@semantic-release/changelog": "5.0.0",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/npm": "7.0.2",
"@semantic-release/release-notes-generator": "9.0.0",
"@types/dotenv": "6.1.1",
"@types/flat": "5.0.2",
"@types/jest": "25.2.3",
"@types/lodash": "4.14.175",
"@types/node": "12.20.15",
"@types/winston": "2.4.4",
"@typescript-eslint/eslint-plugin": "2.18.0",
"@typescript-eslint/parser": "2.18.0",
"cross-env": "7.0.3",
"eslint": "7.13.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-css-modules": "2.11.0",
"eslint-plugin-jest": "23.6.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jest": "23.8.1",
"eslint-plugin-json": "2.1.2",
"eslint-plugin-prettier": "3.1.2",
"husky": "3.1.0",
"jest": "26.6.3",
"lint-staged": "10.0.7",
"prettier": "1.19.1",
"semantic-release": "19.0.0",
"ts-jest": "25.3.0",
"ts-node-dev": "1.1.8",
"typescript": "3.7.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run format && npm test && npm run build"
}
},
"repository": {
"type": "git",
"url": "https://github.com/kaminskypavel/winston-bigquery.git"
},
"bugs": {
"url": "https://github.com/kaminskypavel/winston-bigquery/issues"
}
}