-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
78 lines (78 loc) · 3.17 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
{
"name": "@gooddata/sdk-model",
"version": "10.15.0-alpha.15",
"author": "GoodData",
"description": "GoodData Model definitions used by UI components and Backend SPI and its implementations",
"repository": {
"type": "git",
"url": "https://github.com/gooddata/gooddata-ui-sdk.git",
"directory": "libs/sdk-model"
},
"license": "MIT",
"type": "module",
"browser": "./esm/index.js",
"exports": {
".": "./esm/index.js",
"./internal": "./esm/internal.js"
},
"types": "./esm/index.d.ts",
"sideEffects": false,
"files": [
"esm/*.js",
"esm/**/*.js",
"esm/**/*.json",
"esm/**/*.d.ts",
"esm/**/*.map"
],
"scripts": {
"clean": "rm -rf ci dist esm coverage *.log tsconfig.tsbuildinfo",
"build": "tsc -p tsconfig.json && npm run api-extractor",
"api-extractor": "mkdir -p api && [ -z \"${CI}\" ] && (api-extractor run -l) || (api-extractor run)",
"test": "vitest watch",
"test-once": "vitest run",
"test-ci": "vitest run --reporter=junit --outputFile=./ci/results/test-results.xml",
"eslint": "eslint -c .eslintrc.cjs src/",
"eslint-fix": "eslint -c .eslintrc.cjs src/ --fix",
"eslint-ci": "mkdir -p ./ci/results && eslint -f checkstyle -o ci/results/eslint-results.xml -c .eslintrc.cjs src/",
"prettier-check": "prettier --check '{src,test}/**/*.{ts,tsx,json,scss,md,yaml,html}'",
"prettier-write": "prettier --write '{src,test}/**/*.{ts,tsx,json,scss,md,yaml,html}'",
"dep-cruiser": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
"dep-cruiser-ci": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
"validate": "npm run dep-cruiser && npm run eslint && npm run prettier-check",
"validate-ci": "npm run dep-cruiser-ci && npm run eslint-ci && npm run prettier-check"
},
"dependencies": {
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.21",
"spark-md5": "^3.0.0",
"stringify-object": "^3.3.0",
"ts-invariant": "^0.7.5",
"tslib": "^2.5.0"
},
"devDependencies": {
"@gooddata/eslint-config": "^4.1.0",
"@microsoft/api-documenter": "^7.17.0",
"@microsoft/api-extractor": "^7.36.0",
"@types/json-stable-stringify": "^1.0.32",
"@types/lodash": "^4.14.202",
"@types/spark-md5": "^3.0.1",
"@types/stringify-object": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"concurrently": "^6.0.2",
"dependency-cruiser": "^13.0.3",
"eslint": "^8.25.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-import-esm": "^1.2.1",
"eslint-plugin-jest": "^27.1.1",
"eslint-plugin-no-only-tests": "^2.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-regexp": "^1.9.0",
"eslint-plugin-sonarjs": "^0.16.0",
"eslint-plugin-tsdoc": "^0.2.14",
"prettier": "~2.5.0",
"typescript": "5.3.3",
"vitest": "1.0.4"
}
}