-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.8 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.8 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@todak2000/react-user-analytics",
"version": "1.0.6-b.0",
"main": "build/index.js",
"module": "build/index.esm.js",
"files": [
"build"
],
"types": "build/index.d.ts",
"description": "A package that provide quick functionality to detect user location, device, current navigation page, unique user visit",
"scripts": {
"build": "rollup -c",
"test": "echo \"No test specified\"",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/todak2000/react-user-analytics.git"
},
"keywords": [
"React",
"Device",
"Location",
"Unique Visitor"
],
"author": "Daniel Olagunju",
"license": "MIT",
"bugs": {
"url": "https://github.com/todak2000/react-user-analytics/issues"
},
"homepage": "https://github.com/todak2000/react-user-analytics#readme",
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@types/jest": "^24.9.1",
"@types/react": "^18.0.27",
"@types/react-dom": "^16.9.14",
"autoprefixer": "^10.4.13",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rollup": "^2.56.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.5.6",
"typescript": "^4.8.4"
},
"dependencies": {
"np": "^7.6.3",
"postcss": "^8",
"react-router-dom": "^6.8.1"
},
"publishConfig": {
"access": "public"
}
}