-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
114 lines (114 loc) · 2.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
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
112
113
114
{
"name": "react-fast-marquee",
"version": "1.6.5",
"description": "A lightweight React component that utilizes the power of CSS animations to create silky smooth marquees.",
"main": "dist/index.js",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"lint": "eslint \"src/**/*.{js,tsx}\" --fix --quiet",
"pretest": "npm run lint",
"test": "node ./__tests__/tests.js",
"no-watch-test": "node ./__tests__/tests.js --no-watch"
},
"jest": {
"globals": {
"ts-jest": {}
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/?(*.)+(spec|test).js?(x)"
],
"moduleNameMapper": {
"\\.(scss)$": "<rootDir>/__tests__/styleMock.js",
"^(components/.+)$": "<rootDir>/src/$1/"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"automock": false,
"setupFiles": [
"./__tests__/setupJest.js"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/justin-chu/react-fast-marquee.git"
},
"keywords": [
"react",
"marquee",
"react-component",
"reactjs",
"carousel",
"slider",
"ticker",
"horizontal-scrolling-carousels"
],
"author": "justin-chu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/justin-chu/react-fast-marquee/issues"
},
"homepage": "https://github.com/justin-chu/react-fast-marquee#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.20",
"@types/react": "^16.9.52",
"@types/react-dom": "^16.9.8",
"@types/resize-observer-browser": "^0.1.7",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.1.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-test-renderer": "^16.14.0",
"rollup": "^2.31.0",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-typescript2": "^0.27.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"peerDependencies": {
"react": ">= 16.8.0 || ^18.0.0",
"react-dom": ">= 16.8.0 || ^18.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{tsx}": [
"eslint --fix"
]
},
"files": [
"dist"
],
"directories": {
"example": "examples"
}
}