forked from deriv-com/deriv-analytics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "@deriv/analytics",
"version": "1.0.4",
"description": "The analytics package contains all the utility functions used for tracking user events and sending them to the respective platform such as Rudderstack.",
"keywords": [
"rudderstack",
"react"
],
"author": "Amir Ali",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "./node_modules/.bin/jest",
"build": "tsc",
"prepare" : "npm run build",
"prepublishOnly" : "npm test"
},
"files": ["lib/**/*"],
"repository": {
"type": "git",
"url": "https://github.com/binary-com/deriv-analytics"
},
"homepage": "https://github.com/binary-com/deriv-analytics",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.1",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"ts-jest": "^29.1.1",
"typescript": "^4.9.5"
},
"dependencies": {
"rudder-sdk-js": "2.40.2"
},
"engines": {
"node": "18.x",
"npm": "9.x"
},
"license": "MIT"
}