-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
112 lines (112 loc) · 2.79 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "cerbero",
"version": "1.1.0",
"description": "Tracking your users interations ",
"main": "dist/cerbero.js",
"module": "dist/cerbero.esm.js",
"browser": "dist/cerbero.umd.js",
"directories": {
"doc": "docs"
},
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts' --fix",
"build": "rollup -c rollup.config.js",
"dev": "concurrently 'npm run dev:watch' 'npm run dev:serve' ",
"dev:watch": "rollup -c rollup.config.js -w",
"dev:serve": "http-server ./docs -p 3001",
"prepublish": "npm run build",
"release": "standard-version",
"commit": "npx git-cz",
"test": "jest --coverage"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/thecreazy/cerbero.git"
},
"keywords": [
"javascript",
"typescript",
"library",
"tracking"
],
"author": "@thecreazy <[email protected]> (https://canellariccardo.it)",
"contributors": [
"@TheBous <[email protected]> ()"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/thecreazy/cerbero/issues"
},
"homepage": "https://github.com/thecreazy/cerbero#readme",
"files": [
"dist"
],
"dependencies": {
"@babel/core": "^7.12.10",
"typescript": "^3.9.5",
"web-vitals": "^2.1.0"
},
"devDependencies": {
"@babel/plugin-external-helpers": "^7.12.1",
"@babel/plugin-transform-destructuring": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@types/jest": "^26.0.20",
"commitizen": "^4.1.2",
"concurrently": "^5.3.0",
"cz-conventional-changelog": "3.3.0",
"http-server": "^0.12.3",
"husky": "^7.0.1",
"jest": "^26.6.3",
"jsdom": "^16.7.0",
"rollup": "^2.36.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-web-worker-loader": "^1.6.0",
"standard-version": "^9.1.0",
"ts-jest": "^26.4.4",
"tslint": "^6.1.3",
"tslint-config-airbnb-base": "^0.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"rootDir": "./",
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "jsdom",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/",
"/dist"
],
"coverageThreshold": {
"global": {
"branches": 65,
"functions": 75,
"lines": 75,
"statements": 75
}
},
"collectCoverageFrom": [
"<rootDir>/src/**/*.{js,ts}"
]
}
}