-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.05 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.05 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
{
"name": "react-scroll-tracker",
"version": "1.7.0",
"description": "",
"main": "dist/index.js",
"files": [
"/dist"
],
"keywords": [
"react",
"scroll",
"tracking",
"hook"
],
"types": "dist/index.d.ts",
"repository": "git@github.com:sampennington/react-scroll-tracker.git",
"homepage": "https://github.com/sampennington/react-scroll-tracker",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "rimraf dist/ && tsc",
"prepublish": "tsc"
},
"author": "sam pennington",
"license": "ISC",
"peerDependencies": {
"react": ">=16.8.0"
},
"np": {
"contents": "dist"
},
"devDependencies": {
"@testing-library/react": "^16.3.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.3.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.2.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}