forked from gooddata/gooddata-react-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.43 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/react-components",
"version": "4.1.2",
"description": "GoodData React Components",
"main": "dist/index.js",
"repository": "git@github.com:gooddata/gooddata-react-components.git",
"author": "GoodData Corporation",
"license": "BSD-3-Clause",
"files": [
"dist",
"src",
"styles",
"LICENSE"
],
"devDependencies": {
"@gooddata/mock-js": "1.0.0",
"@gooddata/test-storybook": "1.1.0",
"@gooddata/typings": "1.0.1",
"@storybook/addon-actions": "3.2.18",
"@storybook/addon-options": "3.2.6",
"@storybook/react": "3.2.6",
"@types/classnames": "2.2.3",
"@types/enzyme": "2.8.8",
"@types/jest": "20.0.4",
"@types/lodash": "4.14.61",
"@types/node": "7.0.8",
"@types/prop-types": "15.5.2",
"@types/react": "16.0.7",
"@types/react-addons-test-utils": "0.14.17",
"@types/react-dom": "15.5.4",
"@types/react-intl": "2.3.2",
"@types/storybook__addon-actions": "3.0.1",
"@types/storybook__react": "3.0.5",
"enzyme": "2.8.0",
"jest": "21.2.1",
"jest-junit": "3.0.0",
"node-sass": "4.7.2",
"node-sass-magic-importer": "5.1.0",
"react": "15.3.2",
"react-addons-test-utils": "15.3.2",
"react-dom": "15.3.2",
"sass-loader": "6.0.6",
"ts-jest": "21.2.4",
"ts-loader": "2.3.7",
"tslint-config-gooddata": "0.0.8",
"typescript": "2.3.3"
},
"dependencies": {
"@gooddata/data-layer": "6.0.0",
"@gooddata/goodstrap": "54.0.0",
"@gooddata/indigo-visualizations": "1.4.0",
"@gooddata/js-utils": "^0.9.0",
"@gooddata/numberjs": "^3.1.2",
"classnames": "^2.2.5",
"gooddata": "5.0.0",
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"react-intl": "^2.2.3",
"rxjs": "^5.5.6"
},
"peerDependencies": {
"react": "15.3.2",
"react-dom": "15.3.2"
},
"config": {
"tslint": "'./{src,stories}/**/*.{ts,tsx}'"
},
"scripts": {
"test": "jest --watch",
"build-css": "node-sass --importer node_modules/node-sass-magic-importer/dist/cli.js -o styles/css styles/scss/main.scss",
"dev": "rm -rf dist && tsc --watch && cp -rf src/translations/ dist/translations/",
"prepublish": "rm -rf dist && tsc && cp -rf src/translations/ dist/translations/ && yarn build-css",
"run-tslint": "tslint -p tsconfig.base.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 -p tsconfig.base.json --noEmit && yarn tslint",
"validate-ci": "tsc -p tsconfig.base.json --noEmit && yarn tslint-ci",
"storybook": "start-storybook -p 9001 -c .storybook",
"build-storybook": "build-storybook -c .storybook -o dist-storybook",
"test-storybook": "test-storybook"
},
"typings": "dist/index.d.ts",
"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,
"mapCoverage": true,
"coverageReporters": [
"html"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"test-storybook": {
"AFM components - BarChart": {
"two measures, one attribute": {
"delay": 1000
}
}
}
}