forked from infermedica/modular-analytics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.49 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.49 KB
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
{
"name": "@infermedica/modular-analytics",
"description": "Modular analytics interface",
"version": "0.5.1",
"author": "Infermedica",
"license": "MIT",
"main": "src/index.js",
"exports": {
".": "src/index.js",
"./vue": "src/vue.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/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
}
]
}
},
"scripts": {
"lint": "eslint \"**/*.js\" --fix",
"check": "tsc --noEmit --moduleResolution node --allowJs --target es6 --lib es2016,dom src/*.js",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"babel-jest": "^27.5.1",
"babel-plugin-rewire": "^1.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^26.1.3",
"jest": "^27.5.1"
},
"dependencies": {
"@types/node": "^16.11.11",
"axios": "^0.24.0",
"bowser": "^2.11.0",
"firebase": "^9.6.8",
"typescript": "^4.5.2"
}
}