-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
111 lines (111 loc) · 2.86 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
{
"name": "easy-collect",
"version": "1.0.1",
"description": "> Biblioteca auxiliar para implementação dos Tag Managers da DP6.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/DP6/easy-collect.git"
},
"author": "",
"contributors": [
{
"name": "Bruno Munhoz",
"email": "bpm1993@gmail.com"
},
{
"name": "Paulo Brumatti",
"email": "paulo8624@gmail.com"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/DP6/easy-collect/issues"
},
"homepage": "https://github.com/DP6/easy-collect#readme",
"scripts": {
"test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text-summary --reporter=text mocha test/index.test.js --require @babel/register",
"coverage": "nyc --reporter=lcov npm run test"
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": [
80,
99
],
"statements": [
90,
99
],
"functions": [
90,
99
],
"branches": [
80,
99
],
"exclude": [
"build",
"documentation-images"
],
"include": [
"core/**/*.js",
"gtm/*.js",
"gtm/**/*.js"
],
"reporter": [
"lcov",
"text-summary",
"text"
],
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
["@semantic-release/npm", {
"npmPublish": false
}],
["@semantic-release/github"]
]
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"babel-plugin-istanbul": "^6.1.1",
"chai": "^4.3.7",
"commitizen": "^4.3.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"del": "^7.0.0",
"gulp": "^4.0.2",
"gulp-beautify": "^3.0.0",
"gulp-concat": "^2.6.1",
"gulp-include": "^2.4.1",
"gulp-minify": "^3.1.0",
"gulp-replace": "^1.1.3",
"gulp-strip-comments": "^2.5.2",
"gulp-uglify": "^3.0.2",
"jsdom": "^21.1.0",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"sonarqube-scanner": "^3.0.0"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}