-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.67 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.67 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
{
"name": "@masthead-data/dataform-package",
"version": "0.1.0",
"description": "Masthead Data package for Dataform to optimize BigQuery resource usage",
"main": "index.js",
"scripts": {
"test": "jest && cd test-project && npm ci && npx @dataform/cli compile --json",
"test:watch": "jest --watch",
"lint": "eslint -c .github/linters/eslint.config.mjs .",
"lint:fix": "eslint -c .github/linters/eslint.config.mjs --fix .",
"release": "node -e \"const v = process.env.npm_config_version; if (!v) { console.error('Error: version parameter is required. Use: npm run release --version=x.y.z'); process.exit(1); } const { execSync } = require('child_process'); execSync(`git tag -a v${v} -m 'Release v${v}'`, { stdio: 'inherit' }); execSync(`git push origin v${v}`, { stdio: 'inherit' }); console.log(`✓ Successfully added a tag v${v}`);\""
},
"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": "9.39.2",
"@eslint/js": "9.39.2",
"globals": "16.5.0"
},
"files": [
"index.js",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}