-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
61 lines (61 loc) · 1.7 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
56
57
58
59
60
61
{
"name": "@fullstory/browser",
"version": "2.0.6",
"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",
"pretest": "tsc --project tsconfig.test.json",
"test": "npm run lint && karma start --single-run --browsers ChromeHeadless karma.conf.js",
"lint": "eslint src",
"build": "rollup -c"
},
"files": [
"dist",
"src"
],
"keywords": [
"fullstory",
"browser",
"sdk"
],
"dependencies": {
"@fullstory/snippet": "2.0.5"
},
"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/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"chai": "^4.1.2",
"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",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^5.0.0",
"mocha": "^9.2.0",
"rimraf": "^2.7.1",
"rollup": "^3.21.0",
"tslib": "^2.5.0",
"typescript": "^4.2.4",
"webpack": "^5.76.1"
}
}