-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
76 lines (76 loc) · 1.95 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
{
"name": "@gooddata/typings",
"version": "2.29.0",
"description": "TypeScript definition files for GoodData platform",
"typings": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"prepublish": "rm -rf dist && tsc",
"dev": "tsc --watch --noEmit",
"test": "jest --watch",
"test-once": "jest",
"test-ci": "JEST_JUNIT_OUTPUT=./ci/results/test-results.xml jest --config jest.ci.json",
"run-tslint": "tslint -p tsconfig.json",
"tslint": "yarn run-tslint -t verbose $npm_package_config_tslint",
"tslint-ci": "mkdir -p ./ci/results && yarn run-tslint -t checkstyle -o ./ci/results/tslint-results.xml $npm_package_config_tslint",
"validate": "tsc --noEmit && yarn tslint",
"validate-ci": "tsc --noEmit && yarn tslint-ci"
},
"config": {
"tslint": "./src/{,**/}*.ts"
},
"files": [
"dist",
"index.ts",
"README.md",
"NOTICE.txt"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gooddata/gooddata-typings.git"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
],
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts)$",
"collectCoverageFrom": [
"src/**/*.{ts}",
"!**/*.d.ts"
],
"collectCoverage": false,
"coverageReporters": [
"html"
],
"moduleFileExtensions": [
"ts",
"js"
]
},
"keywords": [
"typescript",
"gooddata",
"types"
],
"author": "GoodData",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/gooddata/gooddata-typings/issues"
},
"homepage": "https://github.com/gooddata/gooddata-typings#readme",
"devDependencies": {
"@gooddata/tslint-config": "^1.0.0",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.121",
"jest": "^27.4.5",
"jest-junit": "^13.0.0",
"ts-jest": "^27.1.2",
"typescript": "^3.3.4000"
},
"dependencies": {
"lodash": "^4.17.11"
}
}