-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
82 lines (82 loc) · 2.29 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@hotjar/browser",
"version": "1.0.9",
"description": "Bring Hotjar directly to your application",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"LICENSE",
"README.md",
"dist/"
],
"scripts": {
"build": "rollup -c && tsc -d --emitDeclarationOnly",
"test": "jest",
"build-demo": "npm run build && webpack --config ./demo/webpack.config.demo.js",
"run-demo": "npm run build && webpack serve --config ./demo/webpack.config.demo.js",
"deploy-demo": "npm run build-demo && gh-pages -d demo_dist",
"coverage": "jest --collectCoverage",
"lint-check": "eslint 'src/**/*.{js,ts,tsx}'",
"lint-fix": "eslint 'src/**/*.{js,ts,tsx}' --fix",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hotjar/hotjar-js.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/hotjar/hotjar-js/issues"
},
"homepage": "https://github.com/hotjar/hotjar-js#readme",
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"babel-jest": "^26.6.3",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^5.2.4",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"rollup": "^2.47.0",
"rollup-plugin-terser": "^7.0.2",
"standard-version": "^9.3.0",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.6",
"tslib": "^2.2.0",
"typescript": "^4.2.4",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"jest": {
"verbose": true,
"coverageProvider": "v8",
"coverageReporters": [
"text"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90
}
},
"transform": {
"^.+\\.ts?$": "ts-jest"
}
}
}