-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 2.08 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
{
"name": "avo-inspector",
"version": "1.4.1",
"description": "",
"main": "dist/index.js",
"browser": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --emitDeclarationOnly && webpack --config webpack.config.js",
"build-for-script-tag": "tsc --outDir dist-browser --emitDeclarationOnly && webpack --config webpack.browserConfig.js",
"lint": "eslint ./src --ext .js,.ts",
"test": "jest",
"test:browser": "BROWSER=1 jest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "yarn build && yarn test:browser && rm -rf examples/ts-avo-inspector-example/node_modules/ && cd examples/ts-avo-inspector-example/ && yarn && yarn test --watchAll=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/avohq/web-avo-inspector.git"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {
"^.+\\.[j]sx?$": "babel-jest",
"^.+\\.[t]sx?$": "ts-jest"
},
"testPathIgnorePatterns": [
"constants",
"examples",
"node_modules",
"dist",
"dist-native"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"keywords": [
"web",
"analytics",
"avo",
"react",
"node",
"javascript"
],
"author": "Avo (https://www.avo.app)",
"license": "MIT",
"bugs": {
"url": "https://github.com/avohq/web-avo-inspector/issues"
},
"homepage": "https://github.com/avohq/web-avo-inspector#readme",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@types/jest": "^29.5.12",
"@types/node": "^22.3.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"eslint": "^9.9.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-promise": "^7.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.2.4",
"ts-loader": "^9.5.1",
"typescript": "*",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
}
}