-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.24 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
{
"name": "carousel-virtualized",
"version": "0.0.1",
"description": "Virtualized react carousel",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "jest --coverage",
"test-watch": "jest --watch --coverage",
"test-benchmark": "jest benchmark",
"test-benchmark-watch": "jest benchmark --watch",
"lint": "tslint --project .",
"build": "rollup -c",
"build-watch": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NinoMaj/carousel-virtualized.git"
},
"keywords": [
"carousel",
"react",
"virtualized",
"window"
],
"author": "Nino Majder <nino.majder@gmail.com> (http://ninomajder.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/NinoMaj/carousel-virtualized/issues"
},
"homepage": "https://github.com/NinoMaj/carousel-virtualized#readme",
"dependencies": {
"@types/react-window": "^1.1.0",
"lodash": "^4.17.11",
"react": "16.5.2",
"react-window": "^1.2.1"
},
"devDependencies": {
"@infinumjs/tslint-config": "^2.0.0-beta.5",
"@types/jest": "^23.3.3",
"@types/lodash": "^4.14.116",
"@types/react": "^16.4.15",
"@types/react-test-renderer": "^16.0.3",
"jest": "^23.6.0",
"prop-types": "^15.6.2",
"react-dom": "^16.5.2",
"react-test-renderer": "^16.5.2",
"react-testing-library": "^5.2.0",
"rollup": "^0.66.4",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-typescript2": "0.18.1",
"rollup-plugin-uglify": "^6.0.0",
"ts-jest": "^23.10.3",
"tslint": "^5.11.0",
"typescript": "^3.1.1"
},
"peerDependencies": {
"react": ">=15"
},
"jest": {
"collectCoverageFrom": [
"src/components/**/*.{ts,tsx}"
],
"coveragePathIgnorePatterns": [
"/test/",
"/node_modules/",
"/examples/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testMatch": [
"**/tests/**/*.ts?(x)"
],
"globals": {
"ts-jest": {
"diagnostics": {
"warnOnly": true
},
"tsConfig": "tsconfig.json"
}
},
"preset": "ts-jest"
}
}