-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
95 lines (95 loc) · 2.42 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
{
"name": "found-scroll",
"version": "1.1.1",
"description": "Scroll management for found",
"files": [
"lib",
"es"
],
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "4c build",
"lint": "eslint src test",
"prepublishOnly": "npm run build",
"testonly": "jest --runInBand --verbose",
"test": "npm run lint && npm run testonly"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"prettier": {
"printWidth": 79,
"singleQuote": true,
"trailingComma": "all"
},
"jest": {
"testEnvironment": "jsdom",
"setupFiles": [
"<rootDir>/test/setup.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/4Catalyzer/found-scroll.git"
},
"keywords": [
"scroll",
"react",
"router"
],
"author": "4Catalyzer",
"license": "MIT",
"bugs": {
"url": "https://github.com/4Catalyzer/found-scroll/issues"
},
"homepage": "https://github.com/4Catalyzer/found-scroll#readme",
"dependencies": {
"farce": "^0.4.5",
"prop-types": "^15.7.2",
"scroll-behavior": "^0.11.0"
},
"peerDependencies": {
"found": ">=0.5.1",
"react": "^0.14.9 || >=15.3.0"
},
"devDependencies": {
"@4c/babel-preset": "^8.1.2",
"@4c/cli": "^2.2.9",
"@4c/tsconfig": "^0.4.1",
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.13",
"@babel/preset-typescript": "^7.18.6",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"babel-jest": "^27.5.1",
"babel-plugin-add-module-exports": "^1.0.4",
"cpy-cli": "^3.1.1",
"enzyme": "^3.11.0",
"eslint": "^7.32.0",
"eslint-config-4catalyzer-jest": "^2.3.0",
"eslint-config-4catalyzer-react": "^1.3.0",
"eslint-config-4catalyzer-typescript": "^3.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"found": "^0.6.0",
"hookem": "^1.0.9",
"jest": "^27.5.1",
"lint-staged": "^11.2.6",
"prettier": "^2.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"typescript": "^4.8.2"
}
}