-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.69 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.69 KB
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
115
116
117
118
119
120
121
122
{
"name": "react-marquee-master",
"version": "2.0.0",
"description": "React 18 component to create vertically and horizontally scrolling marquees with advanced features",
"type": "module",
"scripts": {
"build:js": "rollup -c",
"build:types": "tsc --emitDeclarationOnly",
"build": "npm run build:types && npm run build:js",
"lint:fix": "eslint --fix ./src/**",
"lint": "eslint ./src/**",
"start": "rollup -c -w",
"dev": "webpack serve --config webpack.config.cjs",
"dev:build": "webpack --config webpack.config.cjs",
"build:demo": "webpack --config webpack.config.cjs --mode production",
"predeploy": "npm run build:demo",
"deploy": "gh-pages -d dev/dist",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"type-check:watch": "npm run type-check -- --watch",
"type-check": "tsc --noEmit"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=20.19.2",
"npm": ">=10",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strongui/react-marquee-master.git"
},
"keywords": [
"react",
"react-component",
"marquee",
"scrolling"
],
"files": [
"dist"
],
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-typescript": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@svgr/rollup": "^8.1.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^30.0.0",
"@types/react": "^18.3.24",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"babel-loader": "^10.0.0",
"css-loader": "^7.1.2",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^5.2.0",
"gh-pages": "^6.3.0",
"globals": "^16.3.0",
"html-webpack-plugin": "^5.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"postcss": "^8.4.41",
"postcss-nested": "^7.0.2",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^4.21.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.77.8",
"sass-loader": "^16.0.2",
"style-loader": "^4.0.0",
"stylelint": "^16.8.1",
"stylelint-config-standard": "^39.0.0",
"stylelint-config-standard-scss": "^15.0.1",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.1.0"
},
"author": "Amir Karamuja",
"license": "MIT",
"bugs": {
"url": "https://github.com/strongui/react-marquee-master/issues"
},
"homepage": "https://github.com/strongui/react-marquee-master#readme",
"dependencies": {
"@testing-library/dom": "^10.4.1",
"np": "^10.2.0"
}
}