-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
92 lines (92 loc) · 2.52 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
{
"name": "penguin-datalayer",
"version": "0.0.1",
"description": "Crawler assistido para validação de objetos enviados à camada de dados (Data Layer)",
"repository": {
"type": "git",
"url": "https://github.com/DP6/penguin-datalayer.git"
},
"main": "index.js",
"scripts": {
"format": "prettier --write .",
"lint-md": "remark .",
"lint-prettier": "npx prettier --check .",
"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",
"run-local": "nodemon index.js config_data.json",
"start": "node index.js config_data.json",
"debug": "nodemon --inspect index.js config_data.json",
"coverage": "nyc --reporter=lcov --reporter=cobertura npm run unit-test",
"docs": "jsdoc2md *.js > docs/functions.md"
},
"keywords": [
"dp6",
"raft suite",
"penguin datalayer",
"data quality",
"datalayer"
],
"author": "DP6",
"contributors": [
{
"name": "Danilo Santos",
"email": "[email protected]"
},
{
"name": "Vanderson Maroni",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/DP6/penguin-datalayer/issues"
},
"homepage": "https://github.com/DP6/penguin-datalayer#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.3",
"ajv": "^6.10.2",
"colors": "^1.4.0",
"pdfmake": "^0.2.4",
"puppeteer": "^2.0.0",
"puppeteer-extra": "^3.1.11",
"puppeteer-extra-plugin-adblocker": "^2.11.6",
"puppeteer-extra-plugin-stealth": "^2.4.11",
"puppeteer-extra-plugin-user-data-dir": "^2.2.7",
"puppeteer-extra-plugin-user-preferences": "^2.2.7",
"request": "^2.88.2",
"request-promise": "^4.2.5"
},
"devDependencies": {
"nodemon": "^2.0.2",
"chai": "^4.3.3",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jsdoc-to-markdown": "^7.0.0",
"mocha": "^8.3.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"remark": "^13.0.0",
"remark-cli": "^9.0.0",
"remark-preset-lint-recommended": "^5.0.0",
"sinon": "^10.0.0"
}
}