-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.42 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.42 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
{
"name": "@fullstory/browser",
"version": "2.0.8",
"description": "The official Fullstory browser SDK",
"repository": "git://github.com/fullstorydev/fullstory-browser-sdk.git",
"homepage": "https://github.com/fullstorydev/fullstory-browser-sdk",
"author": "Fullstory",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"test": "npm run lint && jest",
"lint": "eslint src",
"build": "rollup -c"
},
"files": [
"dist",
"src"
],
"keywords": [
"fullstory",
"browser",
"sdk"
],
"dependencies": {
"@fullstory/snippet": "2.0.6"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.8.6",
"@rollup/plugin-typescript": "^11.1.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.3.0",
"rimraf": "^2.7.1",
"rollup": "^3.21.0",
"ts-jest": "^29.1.0",
"tslib": "^2.5.0",
"typescript": "^4.2.4",
"webpack": "^5.76.1"
}
}