-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.19 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
{
"name": "react-easy-marquee",
"version": "1.2.4",
"homepage": "https://jagnani73.github.io/react-easy-marquee",
"description": "A marquee component for React using CSS.",
"author": {
"name": "Yashvardhan Jagnani",
"email": "yashjagnani73@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/jagnani73/react-easy-marquee"
},
"license": "MIT",
"keywords": [
"react",
"reactjs",
"marquee",
"css",
"typescript"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=14",
"npm": ">=6"
},
"scripts": {
"build": "rollup -c",
"dev-example": "cd example/ && yarn start",
"dev": "rollup -c -w",
"build-example": "cd example/ && yarn build"
},
"peerDependencies": {
"react": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/runtime": "^7.14.5",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/react": "^17.0.9",
"rollup": "^2.51.0",
"rollup-plugin-typescript2": "^0.30.0",
"tslib": "^2.2.0",
"typescript": "^4.3.2"
},
"files": [
"dist"
]
}