forked from malloydata/malloy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.66 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
{
"private": true,
"version": "0.0.1",
"license": "GPL-2.0",
"name": "malloy",
"workspaces": {
"packages": [
"packages/*",
"demo/*"
]
},
"engines": {
"yarn": "^1.22.0"
},
"files": [
"samples"
],
"scripts": {
"clean": "yarn workspace @malloydata/malloy clean && yarn tsc --build --clean",
"build": "yarn workspace @malloydata/malloy build-parser && yarn tsc --build",
"package-extension": "yarn build && yarn workspace malloy-vscode package-extension",
"lint": "yarn eslint '**/*.ts{,x}'",
"test": "yarn jest",
"docs-clean": "rm -rf docs/.jekyll-cache/ && rm -rf docs/_includes/generated/ && rm -rf docs/documentation && rm -rf js/generated/",
"docs-prebuild": "yarn build && yarn docs-clean",
"docs-build": "yarn docs-prebuild && ts-node --project tsconfig.packages.json docs/_scripts/build_docs/index.ts && cd docs && bundle exec jekyll build",
"docs-preprocess": "ts-node --project tsconfig.packages.json docs/_scripts/build_docs/index.ts --watch",
"docs-postprocess": "yarn wait-on ./docs/_includes/generated/toc.html && cd docs && bundle exec jekyll serve -l -o",
"docs-serve": "yarn docs-prebuild && yarn concurrently --kill-others 'yarn docs-preprocess' 'yarn docs-postprocess'",
"vscode-build-extension-dev": "yarn workspace malloy-vscode build-extension-dev",
"vscode-publish-extensions": "yarn workspace malloy-vscode publish-extensions",
"third-party-licenses": "ts-node scripts/third_party_licenses",
"malloyc": "ts-node scripts/malloy-to-json"
},
"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",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.18.0",
"archiver": "^5.3.0",
"concurrently": "^6.2.1",
"csv-stringify": "^5.6.5",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.0",
"jest-diff": "^27.0.6",
"jest-expect-message": "^1.0.2",
"jsdom": "^19.0.0",
"md5": "^2.3.0",
"prettier": "^2.3.2",
"remark-gfm": "^1.0.0",
"remark-parse": "^9.0.0",
"shiki": "^0.10.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "4.5.4",
"unified": "^9.2.1",
"wait-on": "^6.0.0"
},
"dependencies": {},
"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"
}
}