-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
120 lines (120 loc) · 3.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
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
{
"name": "react-marquee-master",
"version": "1.4.5",
"description": "React component to allow you to create a vertically scrolling marquee",
"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",
"test": "echo \"No test specified\"",
"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": ">=10.18",
"npm": ">=6.13"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strongui/react-marquee-master.git"
},
"keywords": [
"react",
"react-component",
"marquee",
"scrolling"
],
"files": [
"dist"
],
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-object-rest-spread": "^7.12.13",
"@babel/plugin-transform-typescript": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-flow": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@rollup/plugin-babel": "^5.2.3",
"@rollup/plugin-commonjs": "^13.0.2",
"@rollup/plugin-node-resolve": "^8.4.0",
"@svgr/rollup": "^5.5.0",
"@types/react": "^16.14.3",
"@types/react-dom": "^16.9.10",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.19.0",
"eslint-config-react-app": "^5.2.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"node-sass": "^4.14.1",
"postcss-nested": "^4.2.3",
"postcss-simple-vars": "^5.0.2",
"prettier": "^2.2.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rollup": "^2.38.5",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-stylelint": "^1.0.0",
"rollup-plugin-url": "^3.0.1",
"stylelint": "^13.10.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.19.0",
"typescript": "^4.1.5"
},
"eslintConfig": {
"extends": [
"react-app"
],
"ignorePatterns": [
"*.scss",
"build/",
"node_modules/"
],
"rules": {
"no-console": [
"warn",
{
"allow": [
"dir",
"error",
"group",
"groupEnd",
"info",
"trace",
"warn"
]
}
]
}
},
"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": {
"np": "^6.5.0"
}
}