-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.92 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
{
"name": "@zazuko/cube-creator",
"private": true,
"scripts": {
"prepare": "husky install",
"postinstall": "patch-package; yarn-deduplicate",
"lint": "eslint . --ext .ts,.vue,.tsx --quiet --ignore-path .gitignore",
"c8": "c8 --reporter lcovonly",
"test": "yarn c8 -o coverage/apis mocha --recursive apis/**/*.test.ts packages/**/*.test.ts --grep @SPARQL --invert",
"test:queries": "yarn c8 -o coverage/queries mocha -t 10000 --recursive apis/**/*.test.ts ui/**/*.test.ts --grep @SPARQL",
"test:cli": "run-s test:cli:*",
"test:cli:rest": "yarn c8 -o coverage/publish mocha --recursive cli/**/*.test.ts --grep @cube-creator/cli/lib/commands/* --invert",
"test:cli:import": "yarn c8 -o coverage/publish mocha --recursive cli/**/*.test.ts --grep @cube-creator/cli/lib/commands/import",
"test:cli:publish": "yarn c8 -o coverage/publish mocha --recursive cli/**/*.test.ts --grep @cube-creator/cli/lib/commands/publish",
"test:cli:transform": "yarn c8 -o coverage/transform mocha --recursive cli/**/*.test.ts --grep @cube-creator/cli/lib/commands/transform",
"test:cli:timeoutJobs": "yarn c8 -o coverage/transform mocha --recursive cli/**/*.test.ts --grep @cube-creator/cli/lib/commands/timeoutJobs",
"test:e2e": "docker compose run --rm e2e-tests --",
"seed-data": "dotenv -e .local.env -- bash -c \"ts-node packages/testing/index.ts -i ubd dimensions px-cube hierarchies\""
},
"workspaces": [
"cli",
"ui",
"apis/*",
"packages/*"
],
"dependencies": {
"patch-package": "^6.5.0",
"postinstall-postinstall": "^2.1.0",
"yarn-deduplicate": "^6.0.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@tpluscode/eslint-config": "^0.3.3",
"@types/node": "^14.14.7",
"@types/webpack-env": "^1.15.3",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"c8": "^7.13.0",
"chai-quantifiers": "^1.0.13",
"dotenv": "^16.0.0",
"eslint": "^8.36.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"npm-run-all": "^4.1.5",
"standard": "^17.0.0",
"ts-node": "^9.0.0",
"typescript": "~4.5.0",
"winston": "^3.3.3"
},
"mocha": {
"extension": "ts",
"recursive": true,
"watch-files": [
"./**/*.ts"
],
"require": [
"mocha-setup.js"
]
},
"c8": {
"all": true,
"reporter": "lcov",
"exclude": [
"node_modules",
"ui",
"typings",
"apis/*/test",
"apis/*/bootstrap",
"apis/*/types",
"cli/test"
]
},
"resolutions": {
"@types/eslint": "^8"
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix --quiet"
]
}
}