generated from DP6/template-default-initiative-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.22 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
{
"name": "raft-suite-hub",
"version": "1.0.0",
"description": "DP6's data quality solution, responsible for saving data.",
"repository": {
"type": "git",
"url": "https://github.com/DP6/raft-suite-hub.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",
"all-test": "npm run unit-test",
"test": "npm -- run all-test",
"coverage": "nyc --reporter=lcov --reporter=cobertura npm run unit-test",
"docs": "npx jsdoc2md index.js > docs/index.md",
"start": "npx @google-cloud/functions-framework --target=app",
"deploy": "gcloud functions deploy hub-raft-suite --runtime=nodejs14 --entry-point=app --trigger-http"
},
"author": "DP6",
"contributors": [
{
"name": "1cadumagalhaes",
"email": "[email protected]"
}
],
"license": "ISC",
"keywords": [
"dp6",
"data-quality",
"cloud-functions",
"google-cloud"
],
"bugs": {
"url": "https://github.com/DP6/raft-suite-hub/issues"
},
"homepage": "https://github.com/DP6/raft-suite-hub#readme",
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/github"
]
]
},
"dependencies": {
"@google-cloud/bigquery": "^5.9.1",
"cors": "^2.8.5",
"cuid": "^2.1.8",
"express": "^4.17.1",
"firebase-admin": "^9.11.1",
"firebase-functions": "^3.15.7"
},
"devDependencies": {
"@google-cloud/functions-framework": "^1.9.0",
"chai": "^4.3.3",
"child-process-promise": "^2.2.1",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jsdoc-to-markdown": "^7.0.1",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"prettier": "2.4.1",
"remark": "^14.0.1",
"remark-cli": "^10.0.0",
"remark-preset-lint-recommended": "^6.1.1",
"sinon": "^11.1.2",
"uuid": "^8.3.2"
}
}