-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
75 lines (75 loc) · 1.61 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
{
"name": "@infermedica/modular-analytics",
"description": "Modular analytics interface",
"version": "0.5.6",
"author": "Infermedica",
"license": "MIT",
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./vue": "./src/vue.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/infermedica/modular-analytics"
},
"files": [
"src/*.js",
"src/*.d.ts"
],
"keywords": [
"vue",
"analytics"
],
"eslintConfig": {
"plugins": [
"jest"
],
"env": {
"browser": true,
"es2021": true,
"jest/globals": true
},
"extends": [
"airbnb-base"
],
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module"
},
"rules": {
"max-len": [
"error",
{
"code": 120,
"ignoreComments": true
}
]
}
},
"scripts": {
"lint": "eslint \"**/*.js\" --fix",
"check": "tsc --noEmit --moduleResolution node --allowJs --target es6 --lib es2016,dom src/*.js",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"babel-jest": "^29.4.1",
"babel-plugin-rewire": "^1.2.0",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-jasmine2": "^29.4.1"
},
"dependencies": {
"@types/node": "^18.11.18",
"axios": "^1.3.0",
"firebase": "^9.16.0",
"typescript": "^4.9.5",
"ua-parser-js": "^1.0.33"
}
}