-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
59 lines (59 loc) · 2.04 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
{
"name": "malloy-samples",
"version": "0.0.85",
"description": "Malloy sample files",
"config": {
"malloy_packages": [
"@malloydata/malloy",
"@malloydata/db-bigquery",
"@malloydata/db-duckdb",
"@malloydata/malloy-sql"
]
},
"engines": {
"node": ">=10"
},
"private": true,
"scripts": {
"test": "jest --runInBand --config=tests/jest.config.js",
"test-silent": "jest --runInBand --config=tests/jest.config.js --reporters jest-silent-reporter",
"lint": "gts lint",
"lint-fix": "gts fix",
"malloy-update-next": "npm install --no-fund --no-audit --save-exact $(echo $npm_package_config_malloy_packages | sed -E 's/(@malloydata\\/[-a-z]+)/\\1@next/g')",
"malloy-update": "npm install --no-fund --no-audit --save-exact $(echo $npm_package_config_malloy_packages | sed -E 's/(@malloydata\\/[-a-z]+)/\\1@latest/g')",
"malloy-link": "npm --no-fund --no-audit link $npm_package_config_malloy_packages",
"malloy-unlink": "npm --no-fund --no-save --no-audit unlink $npm_package_config_malloy_packages && npm --no-fund --no-audit install --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/malloydata/malloy-samples.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/malloydata/malloy-samples/issues"
},
"homepage": "https://github.com/malloydata/malloy-samples#readme",
"dependencies": {
"@malloydata/db-bigquery": "0.0.188",
"@malloydata/db-duckdb": "0.0.188",
"@malloydata/malloy": "0.0.188",
"@malloydata/malloy-sql": "0.0.188",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^29.3.1",
"jest-expect-message": "^1.1.3",
"jest-silent-reporter": "^0.5.0",
"ts-jest": "^29.0.5",
"typescript": "^4.8.4"
},
"devDependencies": {
"@types/node": "^14.11.2",
"gts": "^3.1.1",
"typescript": "~4.7.0"
}
}