-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.67 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
95
96
97
{
"name": "@orioro/bq-query-schema",
"version": "0.5.0",
"description": "",
"keywords": [],
"homepage": "https://github.com/orioro/node-bq-query-schema",
"bugs": "https://github.com/orioro/node-bq-query-schema/issues",
"repository": {
"type": "git",
"url": "https://github.com/orioro/node-bq-query-schema.git"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"scripts": {
"test": "jest --collectCoverage",
"dev": "jest --watch",
"build": "rm -rf dist && rollup --config ./rollup/build.config.js && yarn tsc:declaration",
"prepare": "npm run build",
"readme": "readme",
"update-dependencies": "npx npm-check-updates -u",
"tsc:declaration": "tsc --declaration --emitDeclarationOnly --declarationDir dist --rootDir src",
"tsc:validate": "tsc --noEmit",
"commit": "cz",
"lint:eslint": "eslint src",
"lint:prettier": "prettier src --check",
"lint": "yarn lint:eslint && yarn lint:prettier",
"prettier": "prettier src",
"ci-check": "yarn test && yarn tsc:validate && yarn lint"
},
"author": "",
"license": "ISC",
"files": [
"dist/**/*"
],
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@google-cloud/bigquery": "^6.2.0",
"@orioro/jest-util": "^1.7.0",
"@orioro/readme": "^1.0.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"babel-jest": "^29.5.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.1.4",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"rollup": "^3.24.0",
"semantic-release": "^17.3.7",
"typescript": "^5.1.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
],
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
]
},
"dependencies": {
"@orioro/cascade": "^3.0.0",
"lodash": "^4.17.21"
},
"packageManager": "[email protected]"
}