-
Notifications
You must be signed in to change notification settings - Fork 434
/
package.json
85 lines (85 loc) · 2.33 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
{
"name": "@trendyol-js/react-carousel",
"version": "3.0.3",
"description": "Lightweight carousel component for react",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"jsnext:main": "dist/es/index.js",
"types": "dist/types/index.d.ts",
"homepage": "https://trendyol.github.io/react-carousel",
"repository": "github:Trendyol/react-carousel",
"bugs": "https://github.com/Trendyol/react-carousel/issues",
"scripts": {
"build": "rollup -c --environment BUILD:production",
"dev": "rollup -c -w --environment BUILD:development",
"fmt": "prettier --write 'src/**/*.{ts,tsx,css}' *.{js,json,md} && npm run lint:fix",
"lint": "tslint -t verbose -c tslint.json 'src/**/*.{ts,tsx}'",
"lint:fix": "tslint -t verbose -c tslint.json --fix 'src/**/*.{ts,tsx}'",
"lint:staged": "pretty-quick --staged && lint-staged",
"test": "jest",
"security": "npm audit"
},
"lint-staged": {
"*.{ts,tsx}": "npm run fmt"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:staged",
"pre-push": "npm run test"
}
},
"keywords": [
"carousel",
"react",
"slider"
],
"authors": [
"Hasan Genc <[email protected]> (https://github.com/hasangenc0)"
],
"license": "MIT",
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@rollup/plugin-replace": "^2.3.1",
"@testing-library/jest-dom": "^5.3.0",
"@testing-library/react": "^10.0.2",
"@types/jest": "^25.2.3",
"@types/react": "^16.9.26",
"autoprefixer": "^9.7.5",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"jest": "^25.2.7",
"jest-transform-css": "^2.0.0",
"lint-staged": "^10.0.9",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.3.3",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-postcss-modules": "^2.0.1",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"ts-jest": "^25.3.1",
"tslint": "^6.1.0",
"tslint-plugin-prettier": "^2.3.0",
"tslint-react-hooks": "^2.2.2",
"typescript": "4.2.3"
},
"sideEffects": false,
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}