This repository was archived by the owner on Apr 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.35 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.35 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
{
"name": "tiny-slider-react",
"version": "0.5.7",
"description": "wrapper tiny-slider plugin for react",
"main": "build/index.js",
"scripts": {
"build": "npx babel lib -d build",
"build:watch": "npx babel lib -w -d build",
"prepare": "npm run build",
"lint": "eslint lib/**; exit 0",
"lint:watch": "esw -w lib/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jechav/tiny-slider-react.git"
},
"keywords": [
"tiny-slider",
"carousel",
"react"
],
"author": "Jose Echavez <jose.echavez92@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/jechav/tiny-slider-react/issues"
},
"homepage": "https://github.com/jechav/tiny-slider-react#readme",
"dependencies": {
"tiny-slider": "^2.9.3"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-watch": "^5.1.2",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}