forked from gooddata/gooddata-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.2 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@gooddata/gooddata-js",
"version": "6.0.0",
"author": "GoodData",
"description": "GoodData JavaScript SDK",
"license": "BSD-3-Clause",
"main": "lib/gooddata-node.js",
"browser": "lib/gooddata-browser.js",
"typings": "lib/gooddata-browser.d.ts",
"files": [
"dist",
"lib",
"src",
"LICENSE"
],
"config": {
"tslint": "'./{src,test}/**/*.ts'"
},
"scripts": {
"dev": "tsc --watch",
"build": "yarn run build:lib && yarn run build:dist",
"build:lib": "rm -rf lib && tsc -p tsconfig.build.json",
"build:dist": "rm -rf dist && grunt dist",
"prepublishOnly": "yarn run build",
"test": "jest --watch",
"test-single-run": "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"
},
"repository": {
"type": "git",
"url": "[email protected]:gooddata/gooddata-js.git"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/jest.setup.js",
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?)$",
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!**/*.d.ts"
],
"collectCoverage": false,
"coverageReporters": [
"html"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"devDependencies": {
"@types/es6-promise": "3.3.0",
"@types/fast-levenshtein": "0.0.1",
"@types/fetch-mock": "5.*",
"@types/invariant": "2.2.29",
"@types/isomorphic-fetch": "0.0.34",
"@types/jest": "22.2.0",
"@types/json-stable-stringify": "1.0.32",
"@types/lodash": "4.14.105",
"@types/md5": "2.1.32",
"@types/node-fetch": "1.6.7",
"@types/qs": "6.5.1",
"async": "2.1.5",
"eslint-config-gooddata": "0.0.18",
"exports-loader": "0.6.3",
"fast-levenshtein": "2.0.6",
"fetch-mock": "5.12.2",
"grunt": "1.0.1",
"grunt-cli": "1.2.0",
"grunt-contrib-copy": "0.8.2",
"grunt-contrib-watch": "1.0.0",
"grunt-contrib-yuidoc": "1.0.0",
"grunt-gh-pages": "2.0.0",
"grunt-grizzly": "0.12.0",
"grunt-run": "0.8.0",
"grunt-webpack": "1.0.14",
"imports-loader": "0.7.0",
"istanbul-instrumenter-loader": "0.2.0",
"jest": "21.2.1",
"jest-junit": "3.0.0",
"js-object-pretty-print": "0.2.0",
"json-loader": "0.5.4",
"lodash-webpack-plugin": "0.11.0",
"ts-jest": "21.2.3",
"ts-loader": "3.2.0",
"tslint-config-gooddata": "0.0.8",
"typescript": "2.8.1",
"webpack": "1.13.2",
"webpack-dev-server": "1.16.1"
},
"dependencies": {
"@gooddata/typings": "2.0.0",
"es6-promise": "3.0.2",
"fetch-cookie": "0.7.0",
"invariant": "2.2.2",
"isomorphic-fetch": "2.2.1",
"json-stable-stringify": "1.0.1",
"lodash": "4.17.4",
"md5": "2.2.1",
"node-fetch": "1.7.3",
"qs": "6.5.1",
"rxjs": "^5.5.6"
}
}