forked from gooddata/gooddata-ui-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 3.05 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
{
"name": "@gooddata/catalog-export",
"version": "8.2.0-alpha.57",
"author": "GoodData",
"description": "GoodData SDK Catalog Export tooling",
"repository": "https://github.com/gooddata/gooddata-ui-sdk/tree/master/tools/catalog-export",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"gdc-catalog-export": "dist/index.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.json",
"dist/**/*.d.ts",
"dist/**/*.map"
],
"config": {
"eslint": "-c .eslintrc.js --ext ts src/"
},
"scripts": {
"clean": "rm -rf ci dist esm coverage *.log && jest --clearCache",
"dev": "tsc -p tsconfig.dev.json --watch",
"build": "tsc -p tsconfig.build.json",
"test": "jest --watch",
"test-once": "jest",
"test-ci": "JEST_JUNIT_OUTPUT=./ci/results/test-results.xml jest --ci --config jest.ci.js",
"eslint": "eslint $npm_package_config_eslint",
"eslint-ci": "mkdir -p ./ci/results && eslint -f checkstyle -o ci/results/eslint-results.xml $npm_package_config_eslint",
"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.js --output-type err-long src/",
"dep-cruiser-ci": "mkdir -p ci/results && depcruise --validate .dependency-cruiser.js --output-type err-html src/ >./ci/results/dep-cruiser.html",
"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": {
"@babel/core": "^7.7.2",
"@babel/plugin-transform-typescript": "^7.7.2",
"@gooddata/api-client-bear": "^8.2.0-alpha.57",
"@gooddata/api-client-tiger": "^8.2.0-alpha.57",
"@gooddata/api-model-bear": "^8.2.0-alpha.57",
"chalk": "^2.4.2",
"commander": "^3.0.2",
"inquirer": "^6.5.2",
"lodash": "^4.17.19",
"ora": "^4.0.2",
"p-map": "^3.0.0",
"prettier": "~2.0.5",
"prompt": "^1.0.0",
"strip-ansi": "^5.2.0",
"ts-morph": "^4.2.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@gooddata/eslint-config": "^2.0.0",
"@types/inquirer": "^6.5.0",
"@types/jest": "^26.0.12",
"@types/lodash": "^4.14.158",
"@types/node": "^12.12.26",
"@types/prettier": "~1.18.2",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"dependency-cruiser": "^9.9.5",
"eslint": "^7.5.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"jest-junit": "^3.0.0",
"ts-jest": "^26.3.0",
"ts-node": "^8.4.1",
"typescript": "4.0.2"
}
}