-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
106 lines (106 loc) · 2.74 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
{
"name": "penguin-adinfo",
"private": "false",
"version": "1.3.1",
"description": "O Ad Info Penguin é um recurso que tem como objetivo o controle e padronização do uso de parametrização e nomenclatura de mídia digital. ",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "npm run unit-test",
"unit-test": "mocha --require ts-node/register --timeout 2000 --exit ts 'test/**/*.spec.ts'",
"lint": "eslint ./src --ext .ts",
"lint-prettier": "npx prettier --check .",
"lint-fix": "eslint ./src --ext .ts --fix",
"compile": "tsc",
"auto-compile": "tsc -w",
"format": "npx prettier --write .",
"build": "npm run compile && npm run test && npm run lint && npm run format",
"coverage": "nyc --reporter=lcov --reporter=cobertura npm run unit-test",
"docs": "npx typedoc --out docs",
"build-quickly": "npm run compile && npm start",
"create-env": "printenv > .env"
},
"nyc": {
"exclude": [
"src/ts/models/cloud/*",
"src/ts/Errors/*"
]
},
"repository": {
"type": "git",
"url": "https://github.com/DP6/penguin-adinfo"
},
"author": "DP6",
"contributors": [
{
"name": "Lucas Tonetto Firmo",
"email": "lucasfirmo@hotmail.com"
}
],
"keywords": [
"dp6",
"adinfo"
],
"homepage": "https://github.com/DP6/penguin-adinfo#readme",
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/github"
]
]
},
"license": "ISC",
"dependencies": {
"@google-cloud/firestore": "^5.0.2",
"@google-cloud/logging-bunyan": "^3.3.0",
"@google-cloud/storage": "^5.18.2",
"@types/bcrypt": "^5.0.0",
"@types/bunyan": "^1.8.8",
"@types/jsonwebtoken": "^8.5.8",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.2",
"bunyan": "^1.8.15",
"convert-csv-to-json": "1.3.3",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"exceljs": "^4.2.1",
"express": "^4.17.3",
"express-fileupload": "^1.3.1",
"express-validator": "^6.14.0",
"json-2-csv": "^3.17.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.4",
"remark": "^14.0.2"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-fileupload": "^1.2.2",
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.30.0",
"chai": "^4.3.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"mocha": "^9.2.2",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"prettier": "^2.6.0",
"supertest": "^6.2.2",
"ts-node": "^10.7.0",
"typedoc": "^0.22.13",
"typescript": "^4.6.2"
}
}