forked from malloydata/malloy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.46 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
{
"private": true,
"version": "0.0.1",
"license": "GPL-2.0",
"name": "malloy",
"workspaces": {
"packages": [
"packages/*",
"demo/*",
"vscode-extension",
"test"
]
},
"files": [
"samples"
],
"scripts": {
"clean": "npm run -w @malloydata/malloy clean && tsc --build --clean",
"build": "npm run -w @malloydata/malloy build-parser && tsc --build",
"package-extension": "npm run build && npm run -w malloy-vscode package-extension",
"lint": "eslint --quiet '**/*.ts{,x}'",
"test": "jest --runInBand",
"test-bigquery": "MALLOY_DATABASE=bigquery jest --runInBand",
"test-postgres": "MALLOY_DATABASE=postgres jest --runInBand",
"test-duckdb": "MALLOY_DATABASE=duckdb jest --runInBand",
"test-silent": "jest --runInBand --reporters jest-silent-reporter",
"docs-clean": "rm -rf docs/.jekyll-cache/ && rm -rf docs/_includes/generated/ && rm -rf docs/documentation && rm -rf js/generated/",
"docs-prebuild": "npm run build && npm run docs-clean",
"docs-build": "npm run docs-prebuild && npm run build-fiddle && ts-node --project tsconfig.docs.json --esm ./docs/_scripts/build_docs/index.ts && cd docs && bundle exec jekyll build",
"docs-preprocess": "ts-node --esm --project tsconfig.docs.json docs/_scripts/build_docs/index.ts --watch",
"docs-postprocess": "wait-on ./docs/_includes/generated/toc.html && cd docs && bundle exec jekyll serve -l -o",
"docs-serve": "npm run docs-prebuild && concurrently --kill-others 'npm run docs-preprocess' 'npm run docs-postprocess'",
"vscode-build-extension-dev": "npm exec -- dotenv -- npm run -w malloy-vscode build-extension-dev",
"vscode-publish-extensions": "npm exec -- dotenv -- npm run -w malloy-vscode publish-extensions",
"vscode-build-composer-dev": "npm run -w malloy-composer-demo build",
"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",
"update-duckdb": "ts-node scripts/update_duckdb",
"build-fiddle": "cd demo/malloy-duckdb-wasm && npm run build"
},
"devDependencies": {
"@jest/globals": "^26.6.2",
"@malloydata/db-bigquery": "*",
"@malloydata/malloy": "*",
"@malloydata/render": "*",
"@types/archiver": "^5.3.1",
"@types/jest-expect-message": "^1.0.3",
"@types/md5": "^2.3.1",
"@types/node": "^16.6.2",
"@types/node-fetch": "^2.6.2",
"@types/tar-stream": "^2.2.2",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.18.0",
"archiver": "^5.3.0",
"concurrently": "^6.2.1",
"cross-os": "^1.5.0",
"csv-stringify": "^5.6.5",
"dotenv-cli": "^6.0.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"fs-extra": "^10.1.0",
"jest": "^26.6.0",
"jest-diff": "^27.0.6",
"jest-expect-message": "^1.0.2",
"jest-silent-reporter": "^0.5.0",
"jsdom": "^19.0.0",
"lerna": "^5.4.3",
"node-fetch": "^2.6.1",
"prettier": "^2.3.2",
"remark-gfm": "^1.0.0",
"remark-parse": "^10.0.1",
"tar-stream": "^2.2.0",
"ts-jest": "^26.4.4",
"ts-node": "^10.9.1",
"typescript": "4.7.4",
"unified": "^10.1.2",
"wait-on": "^6.0.0"
},
"resolutions": {
"simple-get": "3.1.1",
"node-fetch": "2.6.7",
"nanoid": "3.1.31",
"node-forge": "1.3.0",
"ansi-regex": "5.0.1",
"nth-check": "2.0.1",
"markdown-it": "12.3.2"
}
}