-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
{
"name": "@openreplay/tools",
"version": "1.0.0",
"description": "A collection of developer tools for encoding, decoding, and more by OpenReplay.",
"type": "module",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "node index.js"
},
"keywords": [
"tools",
"openreplay",
"base64",
"jwt",
"csv-to-json"
],
"author": "OpenReplay",
"license": "MIT",
"dependencies": {
"base-64": "^1.0.0",
"csvtojson": "^2.0.10",
"jwt-decode": "^3.1.2",
"papaparse": "^5.4.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"babel-jest": "^29.7.0",
"jest": "^29.0.0"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openreplay/tools.git"
},
"bugs": {
"url": "https://github.com/openreplay/tools/issues"
},
"homepage": "https://github.com/openreplay/tools#readme"
}