-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.41 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
{
"name": "react-picture-ratio",
"version": "0.9.8",
"description": "A simple aspect ratio component for react",
"main": "lib/index.js",
"types": "lib/esm/index.d.ts",
"homepage": "https://github.com/arimariojesus/react-picture-ratio#readme",
"files": [
"lib/"
],
"keywords": [
"react",
"picture",
"ratio",
"react-picture-ratio",
"img",
"image",
"cls",
"aspect-ratio",
"aspect ratio"
],
"license": "MIT",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:upt": "jest -u",
"build": "webpack",
"lint": "eslint ./src --ext ts,tsx",
"lint:fix": "yarn lint --fix",
"prettier": "prettier ./src/{*.{ts,tsx},**/*.{ts,tsx}}"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn linkt:fix"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint:fix",
"yarn test"
]
},
"repository": {
"type": "git",
"url": "https://github.com/arimariojesus/react-picture-ratio.git"
},
"author": {
"name": "Arimário Jesus",
"email": "arimario.jesus@hotmail.com"
},
"bugs": "https://github.com/arimariojesus/react-picture-ratio/issues",
"devDependencies": {
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"css-loader": "^6.5.0",
"eslint": "^8.1.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-testing-library": "^5.0.0",
"git-commit-msg-linter": "^3.2.8",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"lint-staged": "^11.2.4",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"style-loader": "^3.3.1",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1"
},
"peerDependencies": {
"react": "^16.x.x || ^17.x.x",
"react-dom": "^16.x.x || ^17.x.x"
}
}