-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.19 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
{
"author": {
"name": "David Koblas"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"description": "React Amplitude Components with hook support",
"devDependencies": {
"@types/amplitude-js": "^5.8.0",
"@types/enzyme": "^3.10.5",
"@types/jest": "^25.2.1",
"@types/prop-types": "^15.7.3",
"@types/react": "^16.9.34",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"jest": "^25.3.0",
"prettier": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
},
"files": [
"src",
"dist"
],
"homepage": "https://github.com/koblas/react-amplitude-hooks",
"repository": "https://github.com/koblas/react-amplitude-hooks",
"license": "MIT",
"keywords": [
"react",
"amplitude"
],
"main": "dist/index.js",
"name": "react-amplitude-hooks",
"peerDependencies": {
"react": "^16.8.0 || ^17"
},
"scripts": {
"build": "tsc",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"setupFilesAfterEnv": [
"<rootDir>src/setupTests.js"
],
"roots": [
"<rootDir>/src"
]
},
"types": "dist/index.d.ts",
"version": "0.10.6"
}