-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.39 KB
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
{
"name": "@masthead-data/dataform-package",
"version": "0.2.1",
"description": "Masthead Data package for Dataform to optimize BigQuery resource usage",
"main": "index.js",
"scripts": {
"test": "./scripts/test-matrix.sh",
"test:single": "jest && cd test-project && npx @dataform/cli compile --json > compiled.json && node ../scripts/verify_compilation.js",
"test:watch": "jest --watch",
"lint": "eslint -c .github/linters/eslint.config.mjs .",
"lint:fix": "eslint -c .github/linters/eslint.config.mjs --fix .",
"release": "./scripts/release.sh"
},
"keywords": [
"dataform",
"bigquery",
"reservation",
"cost-optimization",
"gcp",
"google-cloud",
"sql",
"data-pipeline"
],
"author": "Masthead Data",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/masthead-data/dataform-package.git"
},
"bugs": {
"url": "https://github.com/masthead-data/dataform-package/issues"
},
"homepage": "https://github.com/masthead-data/dataform-package#readme",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"jest": "30.2.0",
"eslint": "10.0.3",
"@eslint/js": "10.0.1",
"globals": "17.4.0"
},
"files": [
"index.js",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}