forked from BugsBunny338/gooddata-data-layer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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
{
"name": "@gooddata/data-layer",
"version": "4.0.3",
"description": "",
"main": "dist/index.js",
"files": [
"dist",
"src",
"LICENSE"
],
"typings": "dist/index.d.ts",
"dependencies": {
"json-stable-stringify": "1.0.1",
"lodash": "4.17.4",
"rxjs": "5.4.3"
},
"devDependencies": {
"@types/express": "4.0.37",
"@types/invariant": "2.2.29",
"@types/jest": "21.1.1",
"@types/json-stable-stringify": "1.0.32",
"@types/lodash": "4.14.61",
"@types/node": "7.0.8",
"gooddata": "4.3.1",
"jest": "21.1.0",
"jest-junit": "3.0.0",
"ts-jest": "21.0.0",
"tslint-config-gooddata": "0.0.4",
"typescript": "2.5.2"
},
"scripts": {
"test": "jest --watch",
"dev": "rm -rf dist && tsc --watch",
"prepublish": "rm -rf dist && tsc",
"tslint": "./node_modules/tslint/bin/tslint --type-check --project tsconfig.base.json --format verbose './src/**/*.ts'",
"tslint-ci": "mkdir -p ./ci/results && ./node_modules/tslint/bin/tslint --type-check --project tsconfig.base.json --format checkstyle --out ./ci/results/tslint-results.xml './src/**/*.ts'",
"validate": "tsc -p tsconfig.base.json --noEmit && yarn tslint",
"validate-ci": "tsc -p tsconfig.base.json --noEmit && yarn tslint-ci"
},
"author": "GoodData",
"license": "BSD-3-Clause",
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.ts$",
"collectCoverageFrom": [
"src/**/*.ts"
],
"moduleFileExtensions": [
"ts",
"js"
]
}
}