forked from midudev/react-slidy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.09 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
{
"name": "react-slidy",
"version": "4.1.0",
"main": "lib/",
"keywords": [
"slider",
"react",
"lory",
"slidy",
"react-lory",
"react-slidy",
"slider react",
"react slider"
],
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"clean:lib": "rimraf ./lib/*",
"lib": "npm run lib:scripts && npm run lib:styles && npm run lib:css",
"lib:scripts": "babel src --out-dir lib --presets=babel-preset-sui",
"lib:styles": "copyfiles -u 1 './src/**/*.scss' lib",
"lib:css": "sass ./src/index.scss ./lib/styles.css",
"lint": "npm run lint:js && npm run lint:sass",
"lint:js": "sui-lint js",
"lint:sass": "sui-lint sass",
"prelib": "npm run clean:lib -s",
"release": "np --no-cleanup",
"prepublish": "npm run lib",
"test": "jest",
"test:watch": "jest --watch"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:midudev/react-slidy.git"
},
"peerDependencies": {
"prop-types": "15",
"react": ">= 16.8.0 < 17",
"react-dom": ">= 16.8.0 < 17"
},
"devDependencies": {
"@babel/cli": "7",
"@babel/core": "^7.13.1",
"@babel/preset-env": "^7.13.5",
"@mdx-js/loader": "1.5.8",
"@next/mdx": "9.3.4",
"@s-ui/lint": "3",
"@size-limit/preset-small-lib": "4.4.5",
"@testing-library/react": "^11.2.5",
"babel-jest": "^26.6.3",
"babel-preset-sui": "3",
"copyfiles": "2.1.1",
"jest": "^26.6.3",
"next": "10.0.7",
"np": "5.2.1",
"prism-react-renderer": "1.0.2",
"prop-types": "15",
"react": "17.0.1",
"react-dom": "17.0.1",
"rimraf": "3.0.2",
"sass": "1.32.8",
"size-limit": "4.4.5"
},
"dependencies": {
"intersection-observer": "0.10.0"
},
"pre-commit": [
"lint"
],
"eslintConfig": {
"extends": [
"./node_modules/@s-ui/lint/eslintrc.js"
]
},
"prettier": "./node_modules/@s-ui/lint/.prettierrc.js",
"stylelint": {
"extends": "./node_modules/@s-ui/lint/stylelint.config.js"
},
"size-limit": [
{
"limit": "3 KB",
"path": "lib/*.js"
}
]
}