forked from fullstorydev/fullstory-browser-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.5 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
{
"name": "@fullstory/browser",
"version": "1.5.0",
"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 && npm run test:karma",
"test:karma": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"lint": "eslint src test .github/actions",
"build": "tsc src/index.d.ts && rollup -c"
},
"files": [
"dist",
"src"
],
"keywords": [
"fullstory",
"browser",
"sdk"
],
"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-babel": "^5.3.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.1.1",
"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": "^1.32.1",
"rollup-plugin-copy": "^3.3.0",
"typescript": "^3.8.3",
"webpack": "^5.38.1"
}
}