-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 2.53 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
{
"name": "penguin-datalayer-collect",
"private": "true",
"version": "1.0.0",
"description": "Validação da camada de dados por Google Cloud Function utilizando o module de validação da DP6 penguin-datalayer-core, código responsável processar o json da camada de dados enviados pelo GTM e persistir o resultado da validação no Bigquery",
"repository": {
"type": "git",
"url": "https://github.com/DP6/penguin-datalayer-collect.git"
},
"main": "index.js",
"scripts": {
"format": "prettier --write .",
"lint-md": "remark .",
"lint-prettier": "npx prettier --check . || exit 0",
"lint": "npm run lint-md && npm run lint-prettier",
"unit-test": "mocha ./test/unit -timeout 8000",
"integration-test": "mocha ./test/integration --timeout=20000 --exit",
"all-test": "npm run integration-test && npm run unit-test",
"test": "npm -- run all-test",
"coverage": "nyc --reporter=lcov --reporter=cobertura npm run unit-test",
"docs": "jsdoc2md index.js > docs/index.md",
"local": "functions-framework --target=penguinDatalayerCollect --signature-type=http --port 8080"
},
"author": "DP6",
"contributors": [
{
"name": "Joaquim Neto",
"email": "[email protected]"
}
],
"license": "ISC",
"keywords": [
"dp6",
"raft suite",
"penguin datalayer core",
"data quality",
"gtm",
"tagmanager"
],
"bugs": {
"url": "https://github.com/DP6/penguin-datalayer-collect/issues"
},
"homepage": "https://github.com/DP6/penguin-datalayer-collect#readme",
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/github"
]
]
},
"dependencies": {
"@dp6/penguin-datalayer-core": "^1.1.5",
"@google-cloud/bigquery": "^5.7.0",
"@google-cloud/storage": "^5.11.0"
},
"devDependencies": {
"@google-cloud/functions-framework": "^1.9.0",
"chai": "^4.3.4",
"child-process-promise": "^2.2.1",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jsdoc-to-markdown": "^7.0.1",
"mocha": "^9.0.3",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"proxyquire": "^2.1.3",
"remark": "^13.0.0",
"remark-cli": "^9.0.0",
"remark-preset-lint-recommended": "^5.0.0",
"request": "^2.88.2",
"requestretry": "^5.0.0",
"uuid": "^8.3.2"
}
}