-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
83 lines (83 loc) · 2.57 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
{
"private": true,
"version": "0.0.1",
"license": "MIT",
"name": "malloy",
"workspaces": {
"packages": [
"packages/malloy-interfaces",
"packages/malloy",
"packages/malloy-db-bigquery",
"packages/malloy-db-trino",
"packages/malloy-db-duckdb",
"packages/malloy-db-mysql",
"packages/malloy-db-postgres",
"packages/malloy-db-snowflake",
"packages/malloy-malloy-sql",
"packages/malloy-render",
"packages/malloy-syntax-highlight",
"test"
]
},
"files": [
"samples"
],
"engines": {
"node": ">=18",
"npm": ">=9"
},
"scripts": {
"clean": "npm run -ws clean",
"build": "npm run -ws build",
"watch": "tsc --watch",
"lint": "gts lint",
"lint-fix": "gts fix",
"test": "jest --runInBand",
"test-bigquery": "MALLOY_DATABASE=bigquery jest --runInBand",
"test-postgres": "MALLOY_DATABASE=postgres jest --runInBand",
"test-duckdb": "JEST_SILENT_REPORTER_SHOW_PATHS=true MALLOY_DATABASE=duckdb jest --runInBand --reporters jest-silent-reporter",
"test-silent": "JEST_SILENT_REPORTER_SHOW_PATHS=true jest --runInBand --reporters jest-silent-reporter --no-color",
"test-deps": "npm run build && npx jest -t dependencies",
"third-party-licenses": "ts-node scripts/third_party_licenses",
"malloyc": "ts-node scripts/malloy-to-json",
"build-duckdb-db": "ts-node scripts/build_duckdb_test_database",
"ping-db": "ts-node ./test/bin/ping_db.ts"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.23.3",
"@babel/preset-env": "^7.23.2",
"@jest/globals": "^26.6.2",
"@malloydata/db-bigquery": "*",
"@malloydata/db-mysql": "*",
"@malloydata/malloy": "*",
"@malloydata/render": "*",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.0.3",
"@types/jest-expect-message": "^1.0.3",
"@types/node": "^18.15.3",
"@types/uuid": "^8.3.2",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"axios": "^1.4.0",
"babel-jest": "^29.3.1",
"cross-os": "^1.5.0",
"csv-stringify": "^5.6.5",
"dotenv-cli": "^6.0.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"fs-extra": "^10.1.0",
"gts": "^5.0.1",
"jest": "^29.0.3",
"jest-diff": "^27.0.6",
"jest-expect-message": "^1.1.3",
"jest-silent-reporter": "^0.5.0",
"lerna": "^8.1.8",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "5.3.3",
"unified": "^10.1.2",
"uuid": "^8.3.2"
}
}